# HG changeset patch # User Aidan Kehoe # Date 1314181350 -3600 # Node ID a39cd9dc92ba3be6018f8f47b050fe878a4c1d47 # Parent a42e686a01bf8ac842742769c8362bc22db7d733 Correct a typo from Mats' merge, process.el, thank you the byte-compiler lisp/ChangeLog addition: 2011-08-24 Aidan Kehoe * process.el (shell-command-on-region): Correct typo from the merge, nnot -> not. diff -r a42e686a01bf -r a39cd9dc92ba lisp/ChangeLog --- 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 + + * process.el (shell-command-on-region): + Correct typo from the merge, nnot -> not. + 2011-08-24 Aidan Kehoe * cl-macs.el (apply-partially): diff -r a42e686a01bf -r a39cd9dc92ba lisp/process.el --- 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)))