From: Juanma Barranquero Date: Mon, 27 Nov 2006 14:12:34 +0000 (+0000) Subject: (tmm-add-one-shortcut): "?\ " -> "?\s". X-Git-Tag: emacs-pretest-22.0.92~456 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a322861f63b4f69134c5bcb1d2639e87055a5f15;p=emacs.git (tmm-add-one-shortcut): "?\ " -> "?\s". --- 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))))))