(tmm-add-one-shortcut): "?\ " -> "?\s".

This commit is contained in:
Juanma Barranquero 2006-11-27 14:12:34 +00:00
parent fe15c2c6b6
commit a322861f63

View file

@ -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))))))