aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2014-05-09 12:10:56 +0300
committerEli Zaretskii2014-05-09 12:10:56 +0300
commitb722ea4eb4716b721eba9556b1f8742cbb75b26d (patch)
tree5a1eebe36f2b72b50970333e164e6b2d06f87e6c
parent1d75432d5c42a7f7c13486c7421f959132179b5b (diff)
downloademacs-b722ea4eb4716b721eba9556b1f8742cbb75b26d.tar.gz
emacs-b722ea4eb4716b721eba9556b1f8742cbb75b26d.zip
lisp/progmodes/grep.el (lgrep): Fix a typo in last commit.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/grep.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0fe7ed67067..18a4eadbed7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-05-09 Eli Zaretskii <eliz@gnu.org>
2
3 * progmodes/grep.el (lgrep): Fix a typo in last commit.
4
12014-05-09 Glenn Morris <rgm@gnu.org> 52014-05-09 Glenn Morris <rgm@gnu.org>
2 6
3 * files.el (file-expand-wildcards): 7 * files.el (file-expand-wildcards):
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index d3e06892abf..d60534074b9 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -904,7 +904,7 @@ This command shares argument histories with \\[rgrep] and \\[grep]."
904 (confirm (equal current-prefix-arg '(4)))) 904 (confirm (equal current-prefix-arg '(4))))
905 (list regexp files dir confirm)))))) 905 (list regexp files dir confirm))))))
906 (when (and (stringp regexp) (> (length regexp) 0)) 906 (when (and (stringp regexp) (> (length regexp) 0))
907 (unless (and dir (file-acessible-directory-p dir)) 907 (unless (and dir (file-accessible-directory-p dir))
908 (setq dir default-directory)) 908 (setq dir default-directory))
909 (let ((command regexp)) 909 (let ((command regexp))
910 (if (null files) 910 (if (null files)