diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:12:34 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:12:34 +0000 |
commit | a322861f63b4f69134c5bcb1d2639e87055a5f15 (patch) | |
tree | 7f5d4d0d9227a5107e4f45bd4ec8811e8e720168 /lisp/tmm.el | |
parent | fe15c2c6b69212c88caafa2509a15fad88ebedd2 (diff) | |
download | emacs-a322861f63b4f69134c5bcb1d2639e87055a5f15.tar.gz |
(tmm-add-one-shortcut): "?\ " -> "?\s".
Diffstat (limited to 'lisp/tmm.el')
-rw-r--r-- | lisp/tmm.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tmm.el b/lisp/tmm.el index 86c326616aa..a2da0005b5a 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el @@ -305,7 +305,7 @@ Stores a list of all the shortcuts in the free variable `tmm-short-cuts'." (if char (setq tmm-short-cuts (cons char tmm-short-cuts))) (cons (concat (if char (concat (char-to-string char) tmm-mid-prompt) ;; keep them lined up in columns - (make-string (1+ (length tmm-mid-prompt)) ?\ )) + (make-string (1+ (length tmm-mid-prompt)) ?\s)) str) (cdr elt)))))) |