Mercurial > hg > xemacs-beta
changeset 5555:a39cd9dc92ba
Correct a typo from Mats' merge, process.el, thank you the byte-compiler
lisp/ChangeLog addition:
2011-08-24 Aidan Kehoe <kehoea@parhasard.net>
* process.el (shell-command-on-region):
Correct typo from the merge, nnot -> not.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 24 Aug 2011 11:22:30 +0100 |
parents | a42e686a01bf |
children | a142ad1a9140 |
files | lisp/ChangeLog lisp/process.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Aug 24 11:07:26 2011 +0100 +++ b/lisp/ChangeLog Wed Aug 24 11:22:30 2011 +0100 @@ -1,3 +1,8 @@ +2011-08-24 Aidan Kehoe <kehoea@parhasard.net> + + * process.el (shell-command-on-region): + Correct typo from the merge, nnot -> not. + 2011-08-24 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (apply-partially):
--- a/lisp/process.el Wed Aug 24 11:07:26 2011 +0100 +++ b/lisp/process.el Wed Aug 24 11:22:30 2011 +0100 @@ -453,7 +453,7 @@ t) nil shell-command-switch command)) (let ((shell-buffer (get-buffer "*Shell Command Output*"))) - (and shell-buffer (nnot (eq shell-buffer (current-buffer))) + (and shell-buffer (not (eq shell-buffer (current-buffer))) (kill-buffer shell-buffer))) ;; Don't muck with mark unless REPLACE says we should. (and replace swap (exchange-point-and-mark t)))