(eshell/export): Fix quoting in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 14 Jun 2005 11:33:54 +0000 (11:33 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 14 Jun 2005 11:33:54 +0000 (11:33 +0000)
lisp/eshell/esh-var.el

index a029427..f1bd94b 100644 (file)
@@ -297,7 +297,7 @@ This function is explicit for adding to `eshell-parse-argument-hook'."
   nil)
 
 (defun eshell/export (&rest sets)
-  "This alias allows the 'export' command to act as bash users expect."
+  "This alias allows the `export' command to act as bash users expect."
   (while sets
     (if (and (stringp (car sets))
             (string-match "^\\([^=]+\\)=\\(.*\\)" (car sets)))