diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-24 13:17:53 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-24 13:17:53 +0200 |
commit | b2bce107b15d6e0c2b773704179c6bf463525459 (patch) | |
tree | aad342b82b83a91e7168fbe8bc5da24142e30d5d /lisp/ansi-color.el | |
parent | ed34cbeae7e2246b2a5f7578da3d1ccc6984f7ca (diff) | |
download | emacs-b2bce107b15d6e0c2b773704179c6bf463525459.tar.gz emacs-b2bce107b15d6e0c2b773704179c6bf463525459.tar.bz2 emacs-b2bce107b15d6e0c2b773704179c6bf463525459.zip |
Further audits of single quotes in Lisp doc strings
* test/manual/etags/el-src/emacs/lisp/progmodes/etags.el
(tags-apropos-additional-actions):
* lisp/window.el (delete-window-choose-selected):
* lisp/vc/ediff-merg.el (ediff-combination-pattern):
* lisp/vc/diff.el (diff-no-select):
* lisp/tab-bar.el (tab-bar-new-tab-choice):
* lisp/simple.el (next-error-message-highlight):
(backward-delete-char-untabify):
* lisp/ses.el (ses-jump-cell-name-function):
* lisp/org/org.el (org-latex-to-html-convert-command):
* lisp/org/org-agenda.el (org-agenda-sorting-strategy):
* lisp/net/tramp.el (tramp-default-file-modes):
* lisp/net/newst-treeview.el
(newsticker-treeview-use-feed-name-from-url-list-in-treeview):
* lisp/net/eww.el (eww-auto-rename-buffer):
* lisp/mwheel.el (mouse-wheel-scroll-amount):
* lisp/mail/rmail.el (rmail-re-abbrevs):
* lisp/info.el (Info-history-forward-menu):
* lisp/gnus/nnselect.el (nnselect-retrieve-headers-override-function):
* lisp/gnus/gnus-start.el (gnus-subscribe-hierarchical-interactive):
* lisp/fringe.el (fboundp):
* lisp/eshell/esh-var.el (eshell-variable-aliases-list):
* lisp/emacs-lisp/checkdoc.el (checkdoc-column-zero-backslash-before-paren):
* lisp/dired-aux.el (dired-confirm-shell-command):
* lisp/calendar/calendar.el (calendar-time-zone-style):
* lisp/ansi-color.el (ansi-color-faces-vector):
(ansi-color-names-vector): Audit use of various single quotes in
Lisp doc strings.
Diffstat (limited to 'lisp/ansi-color.el')
-rw-r--r-- | lisp/ansi-color.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ansi-color.el b/lisp/ansi-color.el index b273e1f6340..d5db9ecfed0 100644 --- a/lisp/ansi-color.el +++ b/lisp/ansi-color.el @@ -234,7 +234,7 @@ This vector holds the faces used for SGR control sequence parameters 0 to 7. This variable is obsolete. To customize the display of faces used by -ansi-color, change 'ansi-color-FACE', e.g. `ansi-color-bold'. To +ansi-color, change `ansi-color-FACE', e.g. `ansi-color-bold'. To customize the actual faces used (e.g. to temporarily display SGR control sequences differently), use `ansi-color-basic-faces-vector'." :type '(vector face face face face face face face face) @@ -249,7 +249,7 @@ This vector holds the colors used for SGR control sequence parameters 30 to 37 (foreground colors) and 40 to 47 (background colors). This variable is obsolete. To customize the display of colors used by -ansi-color, change 'ansi-color-COLOR', e.g. `ansi-color-red'. To +ansi-color, change `ansi-color-COLOR', e.g. `ansi-color-red'. To customize the actual faces used (e.g. to temporarily display SGR control sequences differently), use `ansi-color-normal-colors-vector'." :type '(vector (choice color (cons color color)) |