aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/ispell.el4
-rw-r--r--lisp/textmodes/reftex-vars.el6
-rw-r--r--lisp/textmodes/rst.el6
-rw-r--r--lisp/textmodes/sgml-mode.el2
-rw-r--r--lisp/textmodes/texnfo-upd.el2
-rw-r--r--lisp/textmodes/tildify.el2
6 files changed, 11 insertions, 11 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 3fe21c482d6..87c2a95da49 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -388,7 +388,7 @@ It consists of pairs (REGEXP . DICTIONARY). If REGEXP is found
388in the message headers, `ispell-local-dictionary' will be set to 388in the message headers, `ispell-local-dictionary' will be set to
389DICTIONARY if `ispell-local-dictionary' is not buffer-local. 389DICTIONARY if `ispell-local-dictionary' is not buffer-local.
390E.g. you may use the following value: 390E.g. you may use the following value:
391 '((\"^Newsgroups:[ \\t]*de\\\\.\" . \"deutsch8\") 391 ((\"^Newsgroups:[ \\t]*de\\\\.\" . \"deutsch8\")
392 (\"^To:[^\\n,]+\\\\.de[ \\t\\n,>]\" . \"deutsch8\"))" 392 (\"^To:[^\\n,]+\\\\.de[ \\t\\n,>]\" . \"deutsch8\"))"
393 :type '(repeat (cons regexp string)) 393 :type '(repeat (cons regexp string))
394 :group 'ispell) 394 :group 'ispell)
@@ -484,7 +484,7 @@ The function must take one string argument and return a string."
484 "When non-nil ispell uses framepop to display choices in a dedicated frame. 484 "When non-nil ispell uses framepop to display choices in a dedicated frame.
485You can set this variable to dynamically use framepop if you are in a 485You can set this variable to dynamically use framepop if you are in a
486window system by evaluating the following on startup to set this variable: 486window system by evaluating the following on startup to set this variable:
487 (and window-system (condition-case () (require 'framepop) (error nil)))" 487 (and window-system (condition-case () (require \\='framepop) (error nil)))"
488 :type 'boolean 488 :type 'boolean
489 :group 'ispell) 489 :group 'ispell)
490 490
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el
index a8f5fcefe30..482dd4c6396 100644
--- a/lisp/textmodes/reftex-vars.el
+++ b/lisp/textmodes/reftex-vars.el
@@ -1153,9 +1153,9 @@ path."
1153 "Sorting of the entries found in BibTeX databases by reftex-citation. 1153 "Sorting of the entries found in BibTeX databases by reftex-citation.
1154Possible values: 1154Possible values:
1155nil Do not sort entries. 1155nil Do not sort entries.
1156'author Sort entries by author name. 1156`author' Sort entries by author name.
1157'year Sort entries by increasing year. 1157`year' Sort entries by increasing year.
1158'reverse-year Sort entries by decreasing year." 1158`reverse-year' Sort entries by decreasing year."
1159 :group 'reftex-citation-support 1159 :group 'reftex-citation-support
1160 :type '(choice (const :tag "not" nil) 1160 :type '(choice (const :tag "not" nil)
1161 (const :tag "by author" author) 1161 (const :tag "by author" author)
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el
index 7a2857a2d5e..9625ec2c7cc 100644
--- a/lisp/textmodes/rst.el
+++ b/lisp/textmodes/rst.el
@@ -2138,15 +2138,15 @@ for completion and choices.
2138 2138
2139 (a) If user selects bullets or #, it's just added. 2139 (a) If user selects bullets or #, it's just added.
2140 (b) If user selects enumerations, a further prompt is given. User needs to 2140 (b) If user selects enumerations, a further prompt is given. User needs to
2141 input a starting item, for example 'e' for 'A)' style. 2141 input a starting item, for example `e' for `A)' style.
2142 2142
2143The position of the new list is arranged according to whether or not the 2143The position of the new list is arranged according to whether or not the
2144current line and the previous line are blank lines. 2144current line and the previous line are blank lines.
2145 2145
21462. When continuing a list, one thing needs to be noticed: 21462. When continuing a list, one thing needs to be noticed:
2147 2147
2148List style alphabetical list, such as 'a.', and roman numerical list, such as 2148List style alphabetical list, such as `a.', and roman numerical list, such as
2149'i.', have some overlapping items, for example 'v.' The function can deal with 2149`i.', have some overlapping items, for example `v.' The function can deal with
2150the problem elegantly in most situations. But when those overlapped list are 2150the problem elegantly in most situations. But when those overlapped list are
2151preceded by a blank line, it is hard to determine which type to use 2151preceded by a blank line, it is hard to determine which type to use
2152automatically. The function uses alphabetical list by default. If you want 2152automatically. The function uses alphabetical list by default. If you want
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index 1d872f08749..cb65e5f1073 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -2066,7 +2066,7 @@ Images in many formats can be inlined with <img src=\"URL\">.
2066If you mainly create your own documents, `sgml-specials' might be 2066If you mainly create your own documents, `sgml-specials' might be
2067interesting. But note that some HTML 2 browsers can't handle `&apos;'. 2067interesting. But note that some HTML 2 browsers can't handle `&apos;'.
2068To work around that, do: 2068To work around that, do:
2069 (eval-after-load \"sgml-mode\" '(aset sgml-char-names ?\\=' nil)) 2069 (eval-after-load \"sgml-mode\" \\='(aset sgml-char-names ?\\=' nil))
2070 2070
2071\\{html-mode-map}" 2071\\{html-mode-map}"
2072 (setq-local sgml-display-text html-display-text) 2072 (setq-local sgml-display-text html-display-text)
diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el
index 0ce70644b03..0508426619f 100644
--- a/lisp/textmodes/texnfo-upd.el
+++ b/lisp/textmodes/texnfo-upd.el
@@ -1407,7 +1407,7 @@ level in the Texinfo file; when looking for the `Previous' pointer,
1407the section found will be at the same or higher hierarchical level in 1407the section found will be at the same or higher hierarchical level in
1408the Texinfo file; when looking for the `Up' pointer, the section found 1408the Texinfo file; when looking for the `Up' pointer, the section found
1409will be at some level higher in the Texinfo file. The fourth argument 1409will be at some level higher in the Texinfo file. The fourth argument
1410\(one of `next, `previous, or `up'\) specifies whether to find the 1410\(one of `next', `previous', or `up'\) specifies whether to find the
1411`Next', `Previous', or `Up' pointer." 1411`Next', `Previous', or `Up' pointer."
1412 (let ((case-fold-search t)) 1412 (let ((case-fold-search t))
1413 (cond ((eq direction 'next) 1413 (cond ((eq direction 'next)
diff --git a/lisp/textmodes/tildify.el b/lisp/textmodes/tildify.el
index c94e417a7ea..0e645fcdd38 100644
--- a/lisp/textmodes/tildify.el
+++ b/lisp/textmodes/tildify.el
@@ -160,7 +160,7 @@ a simple pass through function could be used:
160 (setq-local tildify-foreach-region-function 160 (setq-local tildify-foreach-region-function
161 (lambda (cb beg end) (funcall cb beg end))) 161 (lambda (cb beg end) (funcall cb beg end)))
162or better still: 162or better still:
163 (setq-local tildify-foreach-region-function 'funcall) 163 (setq-local tildify-foreach-region-function \\='funcall)
164See `tildify-foreach-ignore-environments' function for other ways to use the 164See `tildify-foreach-ignore-environments' function for other ways to use the
165variable." 165variable."
166 :version "25.1" 166 :version "25.1"