aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorPaul Eggert2015-05-28 00:06:14 -0700
committerPaul Eggert2015-05-28 00:22:03 -0700
commitdfc2ef11a84d33eab916ff87b8537f8e28c05c92 (patch)
treeb196ac609a67987d5e1e756860de51b4361c8bd2 /lisp/eshell
parent0fd5e6593af620863dcf90dff5d04631458e24cd (diff)
downloademacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.tar.gz
emacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.zip
Fix minor quoting problems in doc strings
Most of these fixes involve escaping grave accents that are actually intended to be grave accents, not left quotes. (Bug#20385)
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/em-dirs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-dirs.el b/lisp/eshell/em-dirs.el
index e9458ccd85f..8a3b5817d5f 100644
--- a/lisp/eshell/em-dirs.el
+++ b/lisp/eshell/em-dirs.el
@@ -300,7 +300,7 @@ Thus, this does not include the current directory.")
300 eshell-user-names))))))) 300 eshell-user-names)))))))
301 301
302(defun eshell/pwd (&rest args) 302(defun eshell/pwd (&rest args)
303 "Change output from `pwd` to be cleaner." 303 "Change output from pwd to be cleaner."
304 (let* ((path default-directory) 304 (let* ((path default-directory)
305 (len (length path))) 305 (len (length path)))
306 (if (and (> len 1) 306 (if (and (> len 1)