X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/e65f2cc09364b340d23e379ce5de14c2fce3891b..9c0c2af5a157eca18c86f644121f7eac5488dbda:/lisp/echistory.el diff --git a/lisp/echistory.el b/lisp/echistory.el index 8e04d7eb01..a01cad89f4 100644 --- a/lisp/echistory.el +++ b/lisp/echistory.el @@ -22,6 +22,8 @@ ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. +;;; Commentary: + ;;; Code: (require 'electric) ; command loop @@ -70,7 +72,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing." (define-key electric-history-map "\e<" 'beginning-of-buffer) (define-key electric-history-map "\n" 'next-line) (define-key electric-history-map "\r" 'next-line) - (define-key electric-history-map "\177" 'previous-line) + (define-key electric-history-map "\177" 'previous-line) (define-key electric-history-map "\C-n" 'next-line) (define-key electric-history-map "\C-p" 'previous-line) (define-key electric-history-map "\ev" 'scroll-down) @@ -150,4 +152,5 @@ The Command History listing is recomputed each time this mode is invoked." (provide 'echistory) +;;; arch-tag: 1e5018fe-190f-44a7-9109-a895dcac4c50 ;;; echistory.el ends here