aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorPaul Eggert2015-08-20 17:33:48 -0700
committerPaul Eggert2015-08-20 17:34:57 -0700
commit760701ebe1b2061619c91c72d41666d3bd42366f (patch)
tree6a34543480af4f7c030d344c408d5eae54b6f318 /admin
parentdaf390b5e927ef87d6d3ccad793cc3fb389acd30 (diff)
downloademacs-760701ebe1b2061619c91c72d41666d3bd42366f.tar.gz
emacs-760701ebe1b2061619c91c72d41666d3bd42366f.zip
Don't quote symbols 'like-this' in docstrings etc.
* admin/unidata/uvs.el (uvs-insert-fields-as-bytes): * lisp/allout-widgets.el (allout-widgets-count-buttons-in-region): * lisp/allout.el (allout-add-resumptions, allout-mode): * lisp/calculator.el (calculator-operators): * lisp/cedet/data-debug.el (dd-propertize): * lisp/cedet/ede/proj-prog.el (ede-proj-target-makefile-program): * lisp/cedet/semantic/analyze/debug.el: (semantic-analyzer-debug-global-miss-text): * lisp/cedet/semantic/lex-spp.el: (semantic-lex-spp-replace-or-symbol-or-keyword): * lisp/cedet/semantic/symref.el: (semantic-symref-cleanup-recent-buffers-fcn): * lisp/cedet/semantic/tag.el (semantic-tag-class): * lisp/cedet/srecode/el.el (srecode-semantic-handle-:el-custom): * lisp/gnus/nnmairix.el (nnmairix-propagate-marks-upon-close): * lisp/gnus/pop3.el (pop3-authentication-scheme): * lisp/help-fns.el (describe-function-orig-buffer): * lisp/imenu.el (imenu--history-list): * lisp/mail/feedmail.el (feedmail-confirm-outgoing) (feedmail-display-full-frame, feedmail-deduce-bcc-where) (feedmail-queue-default-file-slug) (feedmail-queue-buffer-file-name): * lisp/net/mairix.el (mairix-searches-mode-map): * lisp/net/newst-backend.el (newsticker-retrieval-method) (newsticker-auto-mark-filter-list): * lisp/obsolete/vi.el (vi-mode): * lisp/progmodes/cc-engine.el (c-literal-type): * lisp/progmodes/cpp.el (cpp-face): * lisp/progmodes/ebrowse.el (ebrowse-electric-list-looper): * lisp/progmodes/elisp-mode.el (elisp--xref-make-xref): * lisp/progmodes/pascal.el (pascal-auto-lineup): * lisp/progmodes/prog-mode.el (prog-widen): * lisp/progmodes/verilog-mode.el (verilog-regexp-words) (verilog-auto-lineup, verilog-auto-reset-widths) (verilog-auto-arg-format, verilog-auto-inst-template-numbers): * lisp/textmodes/flyspell.el (flyspell-maybe-correct-transposition) (flyspell-maybe-correct-doubling): * lisp/textmodes/table.el (table-justify, table-justify-cell) (table-justify-row, table-justify-column, table-insert-sequence) (table--justify-cell-contents): * lisp/url/url-auth.el (url-get-authentication): * lisp/window.el (display-buffer-record-window): * lisp/xml.el (xml-parse-file, xml-parse-region): * src/gfilenotify.c (Fgfile_add_watch): Don't quote symbols with apostrophes in doc strings. Use asymmetric quotes instead. * lisp/cedet/semantic/complete.el (semantic-displayor-show-request): Likewise for symbol in diagnostic. * lisp/image.el (image-extension-data): * lisp/register.el (frame-configuration-to-register): * src/buffer.c (syms_of_buffer): Remove bogus apostrophes after symbols. * lisp/thumbs.el (thumbs-conversion-program): Quote Lisp string values using double-quotes, not apostrophes.
Diffstat (limited to 'admin')
-rw-r--r--admin/unidata/uvs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/unidata/uvs.el b/admin/unidata/uvs.el
index a6beac97db4..8d3ffe20699 100644
--- a/admin/unidata/uvs.el
+++ b/admin/unidata/uvs.el
@@ -114,7 +114,7 @@ The most significant byte comes first."
114 "Insert VALUES for FIELDS as a sequence of bytes to the current buffer. 114 "Insert VALUES for FIELDS as a sequence of bytes to the current buffer.
115VALUES and FIELDS are lists of integers and field symbols, 115VALUES and FIELDS are lists of integers and field symbols,
116respectively. Byte length of each value is determined by the 116respectively. Byte length of each value is determined by the
117'uvs-field-size' property of the corresponding field." 117`uvs-field-size' property of the corresponding field."
118 (while fields 118 (while fields
119 (let ((field (car fields)) 119 (let ((field (car fields))
120 (value (car values))) 120 (value (car values)))