diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-31 15:10:07 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-31 15:10:37 -0700 |
commit | 244c417a5669eecca2a4930628ad438029466de1 (patch) | |
tree | 786b23a97c9fa3474e9d8d8e174d3e43a9cda3c9 /lisp/eshell/em-glob.el | |
parent | 86f692009b949cedea9ae1e25868c54dece68318 (diff) | |
download | emacs-244c417a5669eecca2a4930628ad438029466de1.tar.gz |
Quoting fixes in ERC and Eshell
* lisp/erc/erc-autoaway.el (erc-autoaway-set-away):
* lisp/erc/erc-backend.el (define-erc-response-handler):
* lisp/erc/erc-fill.el (erc-fill-static-center):
* lisp/eshell/em-dirs.el (eshell-save-some-last-dir):
* lisp/eshell/em-glob.el (eshell-glob-entries):
* lisp/eshell/em-hist.el (eshell-save-some-history):
* lisp/eshell/em-unix.el (eshell-remove-entries, eshell/rm)
(eshell-shuffle-files):
* lisp/eshell/esh-cmd.el (eshell-do-eval):
* lisp/eshell/esh-proc.el (eshell-process-interact)
(eshell-query-kill-processes):
Respect ‘text-quoting-style’ in diagnostics and doc strings.
Diffstat (limited to 'lisp/eshell/em-glob.el')
-rw-r--r-- | lisp/eshell/em-glob.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el index 8abdd0058fb..976882c14e2 100644 --- a/lisp/eshell/em-glob.el +++ b/lisp/eshell/em-glob.el @@ -289,7 +289,7 @@ the form: glob (car globs) len (length glob))))) (if (and recurse-p (not glob)) - (error "'**' cannot end a globbing pattern")) + (error "‘**’ cannot end a globbing pattern")) (let ((index 1)) (setq incl glob) (while (and (eq incl glob) |