Mercurial > emacs
diff lisp/tmm.el @ 91040:14c4a6aac623
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 866-879)
- Merge multi-tty branch
- Update from CVS
- Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-257
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 11 Oct 2007 16:14:00 +0000 |
parents | f55f9811f5d7 490362706869 |
children | 606f2d163a64 |
line wrap: on
line diff
--- a/lisp/tmm.el Thu Oct 11 01:51:15 2007 +0000 +++ b/lisp/tmm.el Thu Oct 11 16:14:00 2007 +0000 @@ -47,7 +47,6 @@ (defvar tmm-table-undef) ;;;###autoload (define-key global-map "\M-`" 'tmm-menubar) -;;;###autoload (define-key global-map [f10] 'tmm-menubar) ;;;###autoload (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) ;;;###autoload @@ -101,7 +100,7 @@ (tmm-menubar (car (posn-x-y (event-start event))))) (defcustom tmm-mid-prompt "==>" - "*String to insert between shortcut and menu item. + "String to insert between shortcut and menu item. If nil, there will be no shortcuts. It should not consist only of spaces, or else the correct item might not be found in the `*Completions*' buffer." :type 'string @@ -116,14 +115,14 @@ the item in the minibuffer, and press RET when you are done, or press the marked letters to pick up your choice. Type C-g or ESC ESC ESC to cancel. " - "*Help text to insert on the top of the completion buffer. + "Help text to insert on the top of the completion buffer. To save space, you can set this to nil, in which case the standard introduction text is deleted too." :type '(choice string (const nil)) :group 'tmm) (defcustom tmm-shortcut-style '(downcase upcase) - "*What letters to use as menu shortcuts. + "What letters to use as menu shortcuts. Must be either one of the symbols `downcase' or `upcase', or else a list of the two in the order you prefer." :type '(choice (const downcase) @@ -132,7 +131,7 @@ :group 'tmm) (defcustom tmm-shortcut-words 2 - "*How many successive words to try for shortcuts, nil means all. + "How many successive words to try for shortcuts, nil means all. If you use only one of `downcase' or `upcase' for `tmm-shortcut-style', specify nil for this variable." :type '(choice integer (const nil)) @@ -232,13 +231,11 @@ tmm-km-list nil t nil (cons 'history (- (* 2 history-len) index-of-default)))) - (save-excursion - (remove-hook 'minibuffer-setup-hook 'tmm-add-prompt) - (if (get-buffer "*Completions*") - (progn - (set-buffer "*Completions*") - (use-local-map tmm-old-comp-map) - (bury-buffer (current-buffer)))))))))) + (remove-hook 'minibuffer-setup-hook 'tmm-add-prompt) + (if (get-buffer "*Completions*") + (with-current-buffer "*Completions*" + (use-local-map tmm-old-comp-map) + (bury-buffer (current-buffer))))))))) (setq choice (cdr (assoc out tmm-km-list))) (and (null choice) (> (length out) (length tmm-c-prompt)) @@ -566,9 +563,10 @@ ;; Return that keymap. bind)))) +;; Huh? What's that about? --Stef (add-hook 'calendar-load-hook (lambda () (require 'cal-menu))) (provide 'tmm) -;;; arch-tag: e7ddbdb6-4b95-4da3-afbe-ad6063d112f4 +;; arch-tag: e7ddbdb6-4b95-4da3-afbe-ad6063d112f4 ;;; tmm.el ends here