aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorPaul Eggert2011-11-26 20:43:11 -0800
committerPaul Eggert2011-11-26 20:43:11 -0800
commite47695319fc758da7ff07d7084386258b6c8b677 (patch)
treec1cd573850e4dd66b8df696835d52513f10dfc94 /lisp/textmodes
parent83aca1cb6970314dcc6c35c1432ebcac42811926 (diff)
downloademacs-e47695319fc758da7ff07d7084386258b6c8b677.tar.gz
emacs-e47695319fc758da7ff07d7084386258b6c8b677.zip
Spelling fixes.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/conf-mode.el6
-rw-r--r--lisp/textmodes/ispell.el5
-rw-r--r--lisp/textmodes/reftex-sel.el4
-rw-r--r--lisp/textmodes/rst.el2
-rw-r--r--lisp/textmodes/tex-mode.el2
5 files changed, 10 insertions, 9 deletions
diff --git a/lisp/textmodes/conf-mode.el b/lisp/textmodes/conf-mode.el
index 1127e6a5d20..40d682c3d93 100644
--- a/lisp/textmodes/conf-mode.el
+++ b/lisp/textmodes/conf-mode.el
@@ -185,7 +185,7 @@ not align (only setting space according to `conf-assignment-space')."
185 (2 'font-lock-constant-face nil t)) 185 (2 'font-lock-constant-face nil t))
186 ;; section { ... } (do this last because some assign ...{...) 186 ;; section { ... } (do this last because some assign ...{...)
187 ("^[ \t]*\\([^=:\n]+?\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face prepend)) 187 ("^[ \t]*\\([^=:\n]+?\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face prepend))
188 "Keywords to hilight in Conf mode.") 188 "Keywords to highlight in Conf mode.")
189 189
190(defvar conf-javaprop-font-lock-keywords 190(defvar conf-javaprop-font-lock-keywords
191 '(;; var=val 191 '(;; var=val
@@ -197,7 +197,7 @@ not align (only setting space according to `conf-assignment-space')."
197 (5 'font-lock-variable-name-face nil t) 197 (5 'font-lock-variable-name-face nil t)
198 (6 'font-lock-constant-face nil t) 198 (6 'font-lock-constant-face nil t)
199 (7 'font-lock-variable-name-face nil t))) 199 (7 'font-lock-variable-name-face nil t)))
200 "Keywords to hilight in Conf Java Properties mode.") 200 "Keywords to highlight in Conf Java Properties mode.")
201 201
202(defvar conf-space-keywords-alist 202(defvar conf-space-keywords-alist
203 '(("\\`/etc/gpm/" . "key\\|name\\|foreground\\|background\\|border\\|head") 203 '(("\\`/etc/gpm/" . "key\\|name\\|foreground\\|background\\|border\\|head")
@@ -240,7 +240,7 @@ This variable is best set in the file local variables, or through
240 (1 'font-lock-variable-name-face)) 240 (1 'font-lock-variable-name-face))
241 ;; section { ... } (do this last because some assign ...{...) 241 ;; section { ... } (do this last because some assign ...{...)
242 ("^[ \t]*\\([^:\n]+\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face prepend)) 242 ("^[ \t]*\\([^:\n]+\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face prepend))
243 "Keywords to hilight in Conf Colon mode.") 243 "Keywords to highlight in Conf Colon mode.")
244 244
245(defvar conf-assignment-sign ?= 245(defvar conf-assignment-sign ?=
246 "Sign used for assignments (char or string).") 246 "Sign used for assignments (char or string).")
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 704fad4fb3b..d0967d63740 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -2399,7 +2399,8 @@ Optional REFRESH will unhighlighted then highlight, using block cursor
2399 (setq start (1+ start)))) ; On block non-refresh, inc start. 2399 (setq start (1+ start)))) ; On block non-refresh, inc start.
2400 (let ((modified (buffer-modified-p)) ; don't allow this fn to modify buffer 2400 (let ((modified (buffer-modified-p)) ; don't allow this fn to modify buffer
2401 (buffer-read-only nil) ; Allow highlighting read-only buffers. 2401 (buffer-read-only nil) ; Allow highlighting read-only buffers.
2402 (text (buffer-substring-no-properties start end)) ; Save hilight region 2402 (text (buffer-substring-no-properties start end))
2403 ; Save highlight region.
2403 (inhibit-quit t) ; inhibit interrupt processing here. 2404 (inhibit-quit t) ; inhibit interrupt processing here.
2404 (buffer-undo-list t)) ; don't clutter the undo list. 2405 (buffer-undo-list t)) ; don't clutter the undo list.
2405 (goto-char end) 2406 (goto-char end)
@@ -3977,7 +3978,7 @@ Both should not be used to define a buffer-local dictionary."
3977; LocalWords: Francais Nederlands charset autoloaded popup nonmenu regexp num 3978; LocalWords: Francais Nederlands charset autoloaded popup nonmenu regexp num
3978; LocalWords: AMStex hspace includeonly nocite epsfig displaymath eqnarray reg 3979; LocalWords: AMStex hspace includeonly nocite epsfig displaymath eqnarray reg
3979; LocalWords: minipage modeline pers dict unhighlight buf grep sync prev inc 3980; LocalWords: minipage modeline pers dict unhighlight buf grep sync prev inc
3980; LocalWords: fn hilight oldot NB AIX msg init read's bufs pt cmd Quinlan eg 3981; LocalWords: fn oldot NB AIX msg init read's bufs pt cmd Quinlan eg
3981; LocalWords: uuencoded unidiff sc nn VM SGML eval IspellPersDict unsplitable 3982; LocalWords: uuencoded unidiff sc nn VM SGML eval IspellPersDict unsplitable
3982; LocalWords: lns XEmacs HTML casechars Multibyte 3983; LocalWords: lns XEmacs HTML casechars Multibyte
3983 3984
diff --git a/lisp/textmodes/reftex-sel.el b/lisp/textmodes/reftex-sel.el
index b4e15fd2776..f4f10f1d1e0 100644
--- a/lisp/textmodes/reftex-sel.el
+++ b/lisp/textmodes/reftex-sel.el
@@ -570,13 +570,13 @@ Useful for large TOC's."
570 nil t) 570 nil t)
571 (beginning-of-line)) 571 (beginning-of-line))
572(defun reftex-select-next-heading (&optional arg) 572(defun reftex-select-next-heading (&optional arg)
573 "Move to next table of contentes line." 573 "Move to next table of contents line."
574 (interactive "p") 574 (interactive "p")
575 (end-of-line) 575 (end-of-line)
576 (re-search-forward "^ " nil t arg) 576 (re-search-forward "^ " nil t arg)
577 (beginning-of-line)) 577 (beginning-of-line))
578(defun reftex-select-previous-heading (&optional arg) 578(defun reftex-select-previous-heading (&optional arg)
579 "Move to previous table of contentes line." 579 "Move to previous table of contents line."
580 (interactive "p") 580 (interactive "p")
581 (re-search-backward "^ " nil t arg)) 581 (re-search-backward "^ " nil t arg))
582(defun reftex-select-quit () 582(defun reftex-select-quit ()
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el
index 81e92487eb0..64dffe78d50 100644
--- a/lisp/textmodes/rst.el
+++ b/lisp/textmodes/rst.el
@@ -2716,7 +2716,7 @@ general but you do not like the details."
2716 (rst-define-level-faces))) 2716 (rst-define-level-faces)))
2717 2717
2718;; Faces for displaying items on several levels; these definitions define 2718;; Faces for displaying items on several levels; these definitions define
2719;; different shades of grey where the lightest one (i.e. least contrasting) is 2719;; different shades of gray where the lightest one (i.e. least contrasting) is
2720;; used for level 1 2720;; used for level 1
2721(defcustom rst-level-face-max 6 2721(defcustom rst-level-face-max 6
2722 "Maximum depth of levels for which section title faces are defined." 2722 "Maximum depth of levels for which section title faces are defined."
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index c4892ce572c..34bd24fba3a 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -2254,7 +2254,7 @@ Only applies the FSPEC to the args part of FORMAT."
2254 ;; Remove those commands whose input was considered stable for 2254 ;; Remove those commands whose input was considered stable for
2255 ;; some other command (typically if (t . "%.pdf") is inactive 2255 ;; some other command (typically if (t . "%.pdf") is inactive
2256 ;; then we're using pdflatex and the fact that the dvi file 2256 ;; then we're using pdflatex and the fact that the dvi file
2257 ;; is inexistent doesn't matter). 2257 ;; is nonexistent doesn't matter).
2258 (let ((tmp nil)) 2258 (let ((tmp nil))
2259 (dolist (cmd cmds) 2259 (dolist (cmd cmds)
2260 (unless (member (nth 1 cmd) unchanged-in) 2260 (unless (member (nth 1 cmd) unchanged-in)