aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorPaul Eggert2015-09-03 15:31:12 -0700
committerPaul Eggert2015-09-03 15:32:54 -0700
commit26bd978d87dfbf9baa115cd961a67d42b416c4bf (patch)
tree20f3d063895796f54b9f521c0b35f65bbcd418c4 /lisp/eshell
parent944d77f070da388b0c6e6578a9f868e88c088940 (diff)
downloademacs-26bd978d87dfbf9baa115cd961a67d42b416c4bf.tar.gz
emacs-26bd978d87dfbf9baa115cd961a67d42b416c4bf.zip
Fix some more docstring etc. quoting problems
Mostly these fixes prevent the transliteration of apostrophes that should stay apostrophes. Also, prefer curved quotes in Bahá’í proper names, as that’s the preferred Bahá’í style and these names are chock-full of non-ASCII characters anyway. * lisp/emacs-lisp/eieio-core.el (eieio-defclass-autoload) (eieio-defclass-internal): * lisp/emacs-lisp/eieio.el (defclass): * lisp/hi-lock.el (hi-lock-mode): Don’t transliterate Lisp apostrophes when generating a doc string or diagnostic. * lisp/international/mule-diag.el (list-coding-systems-1): * lisp/international/ogonek.el (ogonek-jak, ogonek-how): * lisp/mail/sendmail.el (sendmail-query-user-about-smtp): * lisp/vc/ediff-mult.el (ediff-redraw-registry-buffer): * lisp/vc/ediff-ptch.el (ediff-fixup-patch-map): Substitute quotes before putting them in the help buffer.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/em-pred.el12
-rw-r--r--lisp/eshell/esh-util.el2
2 files changed, 7 insertions, 7 deletions
diff --git a/lisp/eshell/em-pred.el b/lisp/eshell/em-pred.el
index 539080f35c4..9b67175ea63 100644
--- a/lisp/eshell/em-pred.el
+++ b/lisp/eshell/em-pred.el
@@ -172,18 +172,18 @@ PERMISSION BITS (for owner/group/world):
172 172
173OWNERSHIP: 173OWNERSHIP:
174 U owned by effective uid 174 U owned by effective uid
175 u(UID|'user') owned by UID/user 175 u(UID|\\='user\\=') owned by UID/user
176 g(GID|'group') owned by GID/group 176 g(GID|\\='group\\=') owned by GID/group
177 177
178FILE ATTRIBUTES: 178FILE ATTRIBUTES:
179 l[+-]N +/-/= N links 179 l[+-]N +/-/= N links
180 a[Mwhms][+-](N|'FILE') access time +/-/= N months/weeks/hours/mins/secs 180 a[Mwhms][+-](N|\\='FILE\\=') access time +/-/= N months/weeks/hours/mins/secs
181 (days if unspecified) if FILE specified, 181 (days if unspecified) if FILE specified,
182 use as comparison basis; so a+'file.c' 182 use as comparison basis; so a+\\='file.c\\='
183 shows files accessed before file.c was 183 shows files accessed before file.c was
184 last accessed 184 last accessed
185 m[Mwhms][+-](N|'FILE') modification time... 185 m[Mwhms][+-](N|\\='FILE\\=') modification time...
186 c[Mwhms][+-](N|'FILE') change time... 186 c[Mwhms][+-](N|\\='FILE\\=') change time...
187 L[kmp][+-]N file size +/-/= N Kb/Mb/blocks 187 L[kmp][+-]N file size +/-/= N Kb/Mb/blocks
188 188
189EXAMPLES: 189EXAMPLES:
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el
index 170779fc5cd..2565842706e 100644
--- a/lisp/eshell/esh-util.el
+++ b/lisp/eshell/esh-util.el
@@ -88,7 +88,7 @@ specification of filenames (for example, in calling `find-file', or
88some other Lisp function that deals with files, not numbers), add the 88some other Lisp function that deals with files, not numbers), add the
89following in your init file: 89following in your init file:
90 90
91 (put 'find-file 'eshell-no-numeric-conversions t) 91 (put \\='find-file \\='eshell-no-numeric-conversions t)
92 92
93Any function with the property `eshell-no-numeric-conversions' set to 93Any function with the property `eshell-no-numeric-conversions' set to
94a non-nil value, will be passed strings, not numbers, even when an 94a non-nil value, will be passed strings, not numbers, even when an