aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-14 11:33:54 +0000
committerJuanma Barranquero2005-06-14 11:33:54 +0000
commita4fd4556b5186a13fc5109255aa3e8c5798f1b5b (patch)
treebfb54a12987f99bf20961825087697a39899e955 /lisp/eshell
parent69df8d97d8788e15dce1a1573294e201ca85f3ee (diff)
downloademacs-a4fd4556b5186a13fc5109255aa3e8c5798f1b5b.tar.gz
emacs-a4fd4556b5186a13fc5109255aa3e8c5798f1b5b.zip
(eshell/export): Fix quoting in docstring.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-var.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-var.el b/lisp/eshell/esh-var.el
index a0294273985..f1bd94baabf 100644
--- a/lisp/eshell/esh-var.el
+++ b/lisp/eshell/esh-var.el
@@ -297,7 +297,7 @@ This function is explicit for adding to `eshell-parse-argument-hook'."
297 nil) 297 nil)
298 298
299(defun eshell/export (&rest sets) 299(defun eshell/export (&rest sets)
300 "This alias allows the 'export' command to act as bash users expect." 300 "This alias allows the `export' command to act as bash users expect."
301 (while sets 301 (while sets
302 (if (and (stringp (car sets)) 302 (if (and (stringp (car sets))
303 (string-match "^\\([^=]+\\)=\\(.*\\)" (car sets))) 303 (string-match "^\\([^=]+\\)=\\(.*\\)" (car sets)))