emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114386: * eshell/esh-proc.el (eshell-reset-after-pr


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114386: * eshell/esh-proc.el (eshell-reset-after-proc): Mark unused arg.
Date: Thu, 19 Sep 2013 02:55:07 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114386
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2013-09-18 19:55:00 -0700
message:
  * eshell/esh-proc.el (eshell-reset-after-proc): Mark unused arg.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/eshell/esh-proc.el        eshproc.el-20091113204419-o5vbwnq5f7feedwu-1874
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-09-19 02:48:01 +0000
+++ b/lisp/ChangeLog    2013-09-19 02:55:00 +0000
@@ -14,7 +14,8 @@
 
        * eshell/em-smart.el (eshell-smart-scroll-window)
        (eshell-disable-after-change):
-       * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
+       * eshell/em-term.el (eshell-term-sentinel):
+       * eshell/esh-proc.el (eshell-reset-after-proc): Mark unused arg.
 
 2013-09-18  Alan Mackenzie  <address@hidden>
 

=== modified file 'lisp/eshell/esh-proc.el'
--- a/lisp/eshell/esh-proc.el   2013-09-12 20:15:53 +0000
+++ b/lisp/eshell/esh-proc.el   2013-09-19 02:55:00 +0000
@@ -133,7 +133,11 @@
 ; (define-key eshell-command-map [(control ?z)]  'eshell-stop-process)
   (define-key eshell-command-map [(control ?\\)] 'eshell-quit-process))
 
-(defun eshell-reset-after-proc (proc status)
+;; This used to be on `eshell-kill-hook', which calls its functions
+;; with two arguments.  Nowadays we call it directly in
+;; `eshell-kill-process-function', but in case anyone still has it
+;; on `eshell-kill-hook', _proc has to stay.
+(defun eshell-reset-after-proc (_proc status)
   "Reset the command input location after a process terminates.
 The signals which will cause this to happen are matched by
 `eshell-reset-signals'."


reply via email to

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