diff options
| author | Glenn Morris | 2009-02-25 08:41:44 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-25 08:41:44 +0000 |
| commit | de5af6bb818f5453740eb9a9b56c8e1eff33763b (patch) | |
| tree | f11631009282b93f16d96e2b63da7d5dc886e8ea | |
| parent | 9af66738a6deb321c77cb277c808e857d537acd9 (diff) | |
| download | emacs-de5af6bb818f5453740eb9a9b56c8e1eff33763b.tar.gz emacs-de5af6bb818f5453740eb9a9b56c8e1eff33763b.zip | |
(dired-guess-shell-alist-user): Fix doc typo.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/dired-x.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9a57263380f..76d3c343f18 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2009-02-25 Glenn Morris <rgm@gnu.org> | 1 | 2009-02-25 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * dired-x.el (dired-guess-shell-alist-user): Fix doc typo. | ||
| 4 | |||
| 3 | * simple.el (eval-expression): | 5 | * simple.el (eval-expression): |
| 4 | * emacs-lisp/lisp-mode.el (eval-last-sexp): Mention truncation in doc. | 6 | * emacs-lisp/lisp-mode.el (eval-last-sexp): Mention truncation in doc. |
| 5 | 7 | ||
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index 4b80ff86ce8..f5505a71e85 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el | |||
| @@ -1131,7 +1131,7 @@ You can set this variable in your ~/.emacs. For example, to add rules for | |||
| 1131 | \(setq dired-guess-shell-alist-user | 1131 | \(setq dired-guess-shell-alist-user |
| 1132 | (list (list \"\\\\.foo\\\\'\" \"FOO-COMMAND\");; fixed rule | 1132 | (list (list \"\\\\.foo\\\\'\" \"FOO-COMMAND\");; fixed rule |
| 1133 | ;; possibly more rules ... | 1133 | ;; possibly more rules ... |
| 1134 | (list \"\\\\.bar\\\'\";; rule with condition test | 1134 | (list \"\\\\.bar\\\\'\";; rule with condition test |
| 1135 | '(if condition | 1135 | '(if condition |
| 1136 | \"BAR-COMMAND-1\" | 1136 | \"BAR-COMMAND-1\" |
| 1137 | \"BAR-COMMAND-2\")))\)" | 1137 | \"BAR-COMMAND-2\")))\)" |