diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-12-07 11:29:54 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-12-07 11:31:16 -0800 |
commit | eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671 (patch) | |
tree | d1233bba4917ba56b357746e1f0ad921b6174724 /lisp/dired-x.el | |
parent | da71c89ba39f500f4c65d986863512f293934401 (diff) | |
download | emacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.tar.gz |
Fix minor quoting problems in doc strings
Diffstat (limited to 'lisp/dired-x.el')
-rw-r--r-- | lisp/dired-x.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index 088ca81ed8d..67721d6e88a 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el @@ -1060,8 +1060,8 @@ You can set this variable in your ~/.emacs. For example, to add rules for `.foo' and `.bar' files, write (setq dired-guess-shell-alist-user - '((\"\\\\.foo\\\\'\" \"FOO-COMMAND\") - (\"\\\\.bar\\\\'\" + \\='((\"\\\\.foo\\\\\\='\" \"FOO-COMMAND\") + (\"\\\\.bar\\\\\\='\" (if condition \"BAR-COMMAND-1\" \"BAR-COMMAND-2\"))))" |