bongo-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bongo-patches] Use `[?\C-\S-b]' instead of `"\C-B"' (and so on)


From: Daniel Brockman
Subject: [bongo-patches] Use `[?\C-\S-b]' instead of `"\C-B"' (and so on)
Date: Mon, 30 Apr 2007 20:00:37 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.92 (gnu/linux)

Use `[?\C-\S-b]' instead of `"\C-B"' (and so on).

Thanks to Daniel Jensen.

diff -rN -u old-bongo/bongo.el new-bongo/bongo.el
--- old-bongo/bongo.el  2007-04-30 20:00:05.000000000 +0200
+++ new-bongo/bongo.el  2007-04-30 20:00:05.000000000 +0200
@@ -9699,14 +9699,14 @@
     (define-key map "P" 'bongo-previous)
     (define-key map "N" 'bongo-next)
     (define-key map "s" 'bongo-seek)
-    (define-key map "\C-B" 'bongo-seek-backward)
-    (define-key map "\C-F" 'bongo-seek-forward)
+    (define-key map [?\C-\S-b] 'bongo-seek-backward)
+    (define-key map [?\C-\S-f] 'bongo-seek-forward)
     (define-key map "B" 'bongo-seek-backward-3)
     (define-key map "F" 'bongo-seek-forward-3)
     (define-key map "\M-B" 'bongo-seek-backward-10)
     (define-key map "\M-F" 'bongo-seek-forward-10)
-    (define-key map "\M-\C-B" 'bongo-seek-backward-60)
-    (define-key map "\M-\C-F" 'bongo-seek-forward-60)
+    (define-key map [?\C-\M-\S-b] 'bongo-seek-backward-60)
+    (define-key map [?\C-\M-\S-f] 'bongo-seek-forward-60)
     (define-key map "i" 'bongo-insert-file)
     (define-key map "I" 'bongo-insert-special)
     (define-key map "g" 'bongo-play)
-- 
Daniel Brockman <address@hidden>

reply via email to

[Prev in Thread] Current Thread [Next in Thread]