diff options
| author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:00:53 +0000 |
|---|---|---|
| committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:00:53 +0000 |
| commit | 66564ab0df6a58ea19c011f3d1a7611bd2df393b (patch) | |
| tree | 1dd6f249178f6216dc7f3f5c5ed86d8aeef5104d | |
| parent | ff26cdfe3b9f37965d5c8ac75411f26388820dcc (diff) | |
| download | emacs-66564ab0df6a58ea19c011f3d1a7611bd2df393b.tar.gz | |
(mouse-popup-menubar, mouse-buffer-menu-alist): "?\ " -> "?\s".
| -rw-r--r-- | lisp/mouse.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 47f3aebcd18..23a2cab4740 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -241,7 +241,7 @@ not it is actually displayed." (cons 'keymap (cons (concat (capitalize (subst-char-in-string - ?- ?\ (symbol-name + ?- ?\s (symbol-name minor-mode))) " Menu") (cdr menu))))) @@ -1885,7 +1885,7 @@ and selects that window." (setq tail buffers) (while tail (let ((elt (car tail))) - (if (/= (aref (buffer-name elt) 0) ?\ ) + (if (/= (aref (buffer-name elt) 0) ?\s) (setq head (cons (cons |
