comparison lisp/simple.el @ 1824:e2f96965cb14

Don't use the completion-oriented history commands.
author Richard M. Stallman <rms@gnu.org>
date Thu, 28 Jan 1993 06:16:04 +0000
parents 04fb1d3d6992
children 6ca05c5f8979
comparison
equal deleted inserted replaced
1823:c97e3a38444c 1824:e2f96965cb14
445 '((minibuffer-local-map . nil) 445 '((minibuffer-local-map . nil)
446 (minibuffer-local-ns-map . nil) 446 (minibuffer-local-ns-map . nil)
447 (minibuffer-local-completion-map . t) 447 (minibuffer-local-completion-map . t)
448 (minibuffer-local-must-match-map . t) 448 (minibuffer-local-must-match-map . t)
449 (read-expression-map . nil)))) 449 (read-expression-map . nil))))
450 ;; In completion maps, use the completion-oriented history commands. 450 ;;; This was once set up to use the completion-oriented history commands
451 '(("\en" . (next-history-element . next-complete-history-element)) 451 ;;; but I turned that off since they seem to do things I don't like.
452 ([next] . (next-history-element . next-complete-history-element)) 452 ;;; - rms
453 ("\ep" . (previous-history-element . previous-complete-history-element)) 453 '(("\en" . (next-history-element . next-history-element))
454 ([prior] . (previous-history-element . previous-complete-history-element)) 454 ([next] . (next-history-element . next-history-element))
455 ("\ep" . (previous-history-element . previous-history-element))
456 ([prior] . (previous-history-element . previous-history-element))
455 ("\er" . previous-matching-history-element) 457 ("\er" . previous-matching-history-element)
456 ("\es" . next-matching-history-element))) 458 ("\es" . next-matching-history-element)))
457 459
458 (defun previous-matching-history-element (regexp n) 460 (defun previous-matching-history-element (regexp n)
459 "Find the previous history element that matches REGEXP. 461 "Find the previous history element that matches REGEXP.