emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/eshell/em-hist.el


From: Pavel Janík
Subject: [Emacs-diffs] Changes to emacs/lisp/eshell/em-hist.el
Date: Sat, 16 Feb 2002 04:39:14 -0500

Index: emacs/lisp/eshell/em-hist.el
diff -c emacs/lisp/eshell/em-hist.el:1.8 emacs/lisp/eshell/em-hist.el:1.9
*** emacs/lisp/eshell/em-hist.el:1.8    Sat Feb 16 02:11:05 2002
--- emacs/lisp/eshell/em-hist.el        Sat Feb 16 04:39:14 2002
***************
*** 207,218 ****
  
  (defun eshell-hist-initialize ()
    "Initialize the history management code for one Eshell buffer."
-   (make-local-hook 'eshell-expand-input-functions)
    (add-hook 'eshell-expand-input-functions
            'eshell-expand-history-references nil t)
  
    (when (eshell-using-module 'eshell-cmpl)
-     (make-local-hook 'pcomplete-try-first-hook)
      (add-hook 'pcomplete-try-first-hook
              'eshell-complete-history-reference nil t))
  
--- 207,216 ----
***************
*** 224,237 ****
             (append rebind-alist eshell-hist-rebind-keys-alist))
        (set (make-local-variable 'search-invisible) t)
        (set (make-local-variable 'search-exit-option) t)
-       (make-local-hook 'isearch-mode-hook)
        (add-hook 'isearch-mode-hook
                  (function
                   (lambda ()
                     (if (>= (point) eshell-last-output-end)
                         (setq overriding-terminal-local-map
                               eshell-isearch-map)))) nil t)
-       (make-local-hook 'isearch-mode-end-hook)
        (add-hook 'isearch-mode-end-hook
                  (function
                   (lambda ()
--- 222,233 ----
***************
*** 278,290 ****
      (if eshell-history-file-name
        (eshell-read-history nil t))
  
-     (make-local-hook 'eshell-exit-hook)
      (add-hook 'eshell-exit-hook 'eshell-write-history nil t))
  
    (unless eshell-history-ring
      (setq eshell-history-ring (make-ring eshell-history-size)))
  
-   (make-local-hook 'eshell-exit-hook)
    (add-hook 'eshell-exit-hook 'eshell-write-history nil t)
  
    (add-hook 'kill-emacs-hook 'eshell-save-some-history)
--- 274,284 ----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]