diff options
| author | Juanma Barranquero | 2005-06-14 11:33:54 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-14 11:33:54 +0000 |
| commit | a4fd4556b5186a13fc5109255aa3e8c5798f1b5b (patch) | |
| tree | bfb54a12987f99bf20961825087697a39899e955 /lisp/eshell | |
| parent | 69df8d97d8788e15dce1a1573294e201ca85f3ee (diff) | |
| download | emacs-a4fd4556b5186a13fc5109255aa3e8c5798f1b5b.tar.gz emacs-a4fd4556b5186a13fc5109255aa3e8c5798f1b5b.zip | |
(eshell/export): Fix quoting in docstring.
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-var.el | 2 |
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))) |