aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-02-22 23:08:12 -0800
committerGlenn Morris2011-02-22 23:08:12 -0800
commit97610156f40b64a933d9c4afa4767e2443527892 (patch)
tree2af012a0c8f4817f30d3efa9e1dc5c26406f797a
parent61cf3a767d6ea2c04d5697431b8b4ea905584bd5 (diff)
downloademacs-97610156f40b64a933d9c4afa4767e2443527892.tar.gz
emacs-97610156f40b64a933d9c4afa4767e2443527892.zip
Fix spelling of "precede".
-rw-r--r--lisp/allout.el8
-rw-r--r--lisp/cedet/semantic/analyze.el2
-rw-r--r--lisp/cedet/semantic/complete.el2
-rw-r--r--lisp/cedet/semantic/edit.el4
-rw-r--r--lisp/cedet/semantic/format.el2
-rw-r--r--lisp/cedet/semantic/java.el2
-rw-r--r--lisp/gnus/gnus-agent.el14
-rw-r--r--lisp/gnus/gnus-range.el14
-rw-r--r--lisp/gnus/gnus-start.el8
-rw-r--r--lisp/gnus/nntp.el2
-rw-r--r--lisp/mail/rmail.el2
-rw-r--r--lisp/net/tramp-gvfs.el2
-rw-r--r--lisp/obsolete/sym-comp.el2
-rw-r--r--lisp/progmodes/cperl-mode.el16
-rw-r--r--lisp/progmodes/idlwave.el4
-rw-r--r--lisp/progmodes/vhdl-mode.el8
-rw-r--r--lisp/replace.el2
-rw-r--r--lisp/textmodes/paragraphs.el2
-rw-r--r--src/w32proc.c2
19 files changed, 49 insertions, 49 deletions
diff --git a/lisp/allout.el b/lisp/allout.el
index d18fcc2e9b9..d3867f0b64f 100644
--- a/lisp/allout.el
+++ b/lisp/allout.el
@@ -217,7 +217,7 @@ The types of elements in the layout specification are:
217 -- positive numbers open to the relative depth indicated by the 217 -- positive numbers open to the relative depth indicated by the
218 number, but do not force already opened subtopics to be closed. 218 number, but do not force already opened subtopics to be closed.
219 -- 0 means to close topic -- hide all subitems. 219 -- 0 means to close topic -- hide all subitems.
220 : -- repeat spec -- apply the preceeding element to all siblings at 220 : -- repeat spec -- apply the preceding element to all siblings at
221 current level, *up to* those siblings that would be covered by specs 221 current level, *up to* those siblings that would be covered by specs
222 following the `:' on the list. Ie, apply to all topics at level but 222 following the `:' on the list. Ie, apply to all topics at level but
223 trailing ones accounted for by trailing specs. (Only the first of 223 trailing ones accounted for by trailing specs. (Only the first of
@@ -3173,7 +3173,7 @@ situation."
3173 nil) 3173 nil)
3174 ;; rationale: if any intervening items were at a lower depth, we 3174 ;; rationale: if any intervening items were at a lower depth, we
3175 ;; would now be on the first offspring at the target depth -- ie, 3175 ;; would now be on the first offspring at the target depth -- ie,
3176 ;; the preceeding item (per the search direction) must be at a 3176 ;; the preceding item (per the search direction) must be at a
3177 ;; lesser depth. that's all we need to check. 3177 ;; lesser depth. that's all we need to check.
3178 (if backward (allout-next-heading) (allout-previous-heading)) 3178 (if backward (allout-next-heading) (allout-previous-heading))
3179 (if (< allout-recent-depth target-depth) 3179 (if (< allout-recent-depth target-depth)
@@ -4276,7 +4276,7 @@ With a negative argument, the item is shifted out using
4276 4276
4277With an argument greater than one, shift-in the item but not its 4277With an argument greater than one, shift-in the item but not its
4278offspring, making the item into a sibling of its former children, 4278offspring, making the item into a sibling of its former children,
4279and a child of sibling that formerly preceeded it. 4279and a child of sibling that formerly preceded it.
4280 4280
4281You are not allowed to shift the first offspring of a topic 4281You are not allowed to shift the first offspring of a topic
4282inwards, because that would yield a \"containment 4282inwards, because that would yield a \"containment
@@ -5394,7 +5394,7 @@ header and body. The elements of that list are:
5394 5394
5395 (goto-char start) 5395 (goto-char start)
5396 (beginning-of-line) 5396 (beginning-of-line)
5397 ;; Goto initial topic, and register preceeding stuff, if any: 5397 ;; Goto initial topic, and register preceding stuff, if any:
5398 (if (> (allout-goto-prefix-doublechecked) start) 5398 (if (> (allout-goto-prefix-doublechecked) start)
5399 ;; First topic follows beginning point -- register preliminary stuff: 5399 ;; First topic follows beginning point -- register preliminary stuff:
5400 (setq result (list (list 0 "" nil 5400 (setq result (list (list 0 "" nil
diff --git a/lisp/cedet/semantic/analyze.el b/lisp/cedet/semantic/analyze.el
index a6b8af5af28..2d4d551a1ad 100644
--- a/lisp/cedet/semantic/analyze.el
+++ b/lisp/cedet/semantic/analyze.el
@@ -101,7 +101,7 @@ Usually bound to the dimension of a single symbol or command.")
101 :type list 101 :type list
102 :documentation "List of tags defining local text. 102 :documentation "List of tags defining local text.
103This can be nil, or a list where the last element can be a string 103This can be nil, or a list where the last element can be a string
104representing text that may be incomplete. Preceeding elements 104representing text that may be incomplete. Preceding elements
105must be semantic tags representing variables or functions 105must be semantic tags representing variables or functions
106called in a dereference sequence.") 106called in a dereference sequence.")
107 (prefixclass :initarg :prefixclass 107 (prefixclass :initarg :prefixclass
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el
index f9f7d4b8de7..13947970efd 100644
--- a/lisp/cedet/semantic/complete.el
+++ b/lisp/cedet/semantic/complete.el
@@ -1265,7 +1265,7 @@ inserted into the current context.")
1265;; generated by a collector. This format is in semanticdb search 1265;; generated by a collector. This format is in semanticdb search
1266;; form. This vaguely standard form is a bit challenging to navigate 1266;; form. This vaguely standard form is a bit challenging to navigate
1267;; because the tags do not contain buffer info, but the file associated 1267;; because the tags do not contain buffer info, but the file associated
1268;; with the tags preceed the tag in the list. 1268;; with the tags precedes the tag in the list.
1269;; 1269;;
1270;; Basic displayors don't care, and can strip the results. 1270;; Basic displayors don't care, and can strip the results.
1271;; Advanced highlighting displayors need to know when they need 1271;; Advanced highlighting displayors need to know when they need
diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el
index ff4064195bf..f9fe4282188 100644
--- a/lisp/cedet/semantic/edit.el
+++ b/lisp/cedet/semantic/edit.el
@@ -427,7 +427,7 @@ See `semantic-edits-change-leaf-tag' for details on parents."
427 ;; confirmed as the lineage of `overlapped-tags' 427 ;; confirmed as the lineage of `overlapped-tags'
428 ;; which must have a value by now. 428 ;; which must have a value by now.
429 429
430 ;; Loop over the search list to find the preceeding CDR. 430 ;; Loop over the search list to find the preceding CDR.
431 ;; Fortunatly, (car overlapped-tags) happens to be 431 ;; Fortunatly, (car overlapped-tags) happens to be
432 ;; the first tag positionally. 432 ;; the first tag positionally.
433 (let ((tokstart (semantic-tag-start (car overlapped-tags)))) 433 (let ((tokstart (semantic-tag-start (car overlapped-tags))))
@@ -875,7 +875,7 @@ pre-positioned to a convenient location."
875 )) 875 ))
876 (message "To Remove Middle Tag: (%s)" 876 (message "To Remove Middle Tag: (%s)"
877 (semantic-format-tag-name first))) 877 (semantic-format-tag-name first)))
878 ;; Find in the cache the preceeding tag 878 ;; Find in the cache the preceding tag
879 (while (and cachestart (not (eq first (car (cdr cachestart))))) 879 (while (and cachestart (not (eq first (car (cdr cachestart)))))
880 (setq cachestart (cdr cachestart))) 880 (setq cachestart (cdr cachestart)))
881 ;; Find the last tag 881 ;; Find the last tag
diff --git a/lisp/cedet/semantic/format.el b/lisp/cedet/semantic/format.el
index 86059de86fe..2f1bfdbed85 100644
--- a/lisp/cedet/semantic/format.el
+++ b/lisp/cedet/semantic/format.el
@@ -297,7 +297,7 @@ local definitions."
297 297
298(define-overloadable-function semantic-format-tag-canonical-name (tag &optional parent color) 298(define-overloadable-function semantic-format-tag-canonical-name (tag &optional parent color)
299 "Return a canonical name for TAG. 299 "Return a canonical name for TAG.
300A canonical name includes the names of any parents or namespaces preceeding 300A canonical name includes the names of any parents or namespaces preceding
301the tag. 301the tag.
302Optional argument PARENT is the parent type if TAG is a detail. 302Optional argument PARENT is the parent type if TAG is a detail.
303Optional argument COLOR means highlight the prototype with font-lock colors.") 303Optional argument COLOR means highlight the prototype with font-lock colors.")
diff --git a/lisp/cedet/semantic/java.el b/lisp/cedet/semantic/java.el
index f0c6b44c102..53e3f14f6c6 100644
--- a/lisp/cedet/semantic/java.el
+++ b/lisp/cedet/semantic/java.el
@@ -257,7 +257,7 @@ Optional argument COLOR indicates that color should be mixed in."
257(define-mode-local-override semantic-documentation-for-tag 257(define-mode-local-override semantic-documentation-for-tag
258 java-mode (&optional tag nosnarf) 258 java-mode (&optional tag nosnarf)
259 "Find documentation from TAG and return it as a clean string. 259 "Find documentation from TAG and return it as a clean string.
260Java have documentation set in a comment preceeding TAG's definition. 260Java has documentation set in a comment preceding TAG's definition.
261Attempt to strip out comment syntactic sugar, unless optional argument 261Attempt to strip out comment syntactic sugar, unless optional argument
262NOSNARF is non-nil. 262NOSNARF is non-nil.
263If NOSNARF is 'lex, then return the semantic lex token." 263If NOSNARF is 'lex, then return the semantic lex token."
diff --git a/lisp/gnus/gnus-agent.el b/lisp/gnus/gnus-agent.el
index 9291d8d30c4..b03274d8cdf 100644
--- a/lisp/gnus/gnus-agent.el
+++ b/lisp/gnus/gnus-agent.el
@@ -444,7 +444,7 @@ manipulated as follows:
444 (setf (gnus-agent-cat-groups old-category) 444 (setf (gnus-agent-cat-groups old-category)
445 (delete group (gnus-agent-cat-groups 445 (delete group (gnus-agent-cat-groups
446 old-category)))))) 446 old-category))))))
447 ;; Purge cache as preceeding loop invalidated it. 447 ;; Purge cache as preceding loop invalidated it.
448 (setq gnus-category-group-cache nil)) 448 (setq gnus-category-group-cache nil))
449 449
450 (setcdr (or (assq 'agent-groups category) 450 (setcdr (or (assq 'agent-groups category)
@@ -1202,7 +1202,7 @@ downloadable."
1202 (mapc #'gnus-summary-remove-process-mark 1202 (mapc #'gnus-summary-remove-process-mark
1203 (gnus-sorted-ndifference gnus-newsgroup-processable gnus-newsgroup-undownloaded)) 1203 (gnus-sorted-ndifference gnus-newsgroup-processable gnus-newsgroup-undownloaded))
1204 1204
1205 ;; The preceeding call to (gnus-agent-summary-fetch-group) 1205 ;; The preceding call to (gnus-agent-summary-fetch-group)
1206 ;; updated the temporary gnus-newsgroup-downloadable to 1206 ;; updated the temporary gnus-newsgroup-downloadable to
1207 ;; remove each article successfully fetched. Now, I 1207 ;; remove each article successfully fetched. Now, I
1208 ;; update the real gnus-newsgroup-downloadable to only 1208 ;; update the real gnus-newsgroup-downloadable to only
@@ -1527,14 +1527,14 @@ downloaded into the agent."
1527 header-number) 1527 header-number)
1528 ;; Check each article 1528 ;; Check each article
1529 (while (setq article (pop articles)) 1529 (while (setq article (pop articles))
1530 ;; Skip alist entries preceeding this article 1530 ;; Skip alist entries preceding this article
1531 (while (> article (or (caar alist) (1+ article))) 1531 (while (> article (or (caar alist) (1+ article)))
1532 (setq alist (cdr alist))) 1532 (setq alist (cdr alist)))
1533 1533
1534 ;; Prune off articles that we have already fetched. 1534 ;; Prune off articles that we have already fetched.
1535 (unless (and (eq article (caar alist)) 1535 (unless (and (eq article (caar alist))
1536 (cdar alist)) 1536 (cdar alist))
1537 ;; Skip headers preceeding this article 1537 ;; Skip headers preceding this article
1538 (while (> article 1538 (while (> article
1539 (setq header-number 1539 (setq header-number
1540 (let* ((header (car headers))) 1540 (let* ((header (car headers)))
@@ -3441,7 +3441,7 @@ missing NOV entry. Run gnus-agent-regenerate-group to restore it.")))
3441 3441
3442 ;; If considering all articles is set, I can only 3442 ;; If considering all articles is set, I can only
3443 ;; expire article IDs that are no longer in the 3443 ;; expire article IDs that are no longer in the
3444 ;; active range (That is, articles that preceed the 3444 ;; active range (That is, articles that precede the
3445 ;; first article in the new alist). 3445 ;; first article in the new alist).
3446 (if (and gnus-agent-consider-all-articles 3446 (if (and gnus-agent-consider-all-articles
3447 (>= article-number (car active))) 3447 (>= article-number (car active)))
@@ -3718,7 +3718,7 @@ has been fetched."
3718 (gnus-agent-append-to-list tail-uncached v1)) 3718 (gnus-agent-append-to-list tail-uncached v1))
3719 (setq arts (cdr arts)) 3719 (setq arts (cdr arts))
3720 (setq ref (cdr ref))) 3720 (setq ref (cdr ref)))
3721 (t ; reference article (v2) preceeds the list being filtered 3721 (t ; reference article (v2) precedes the list being filtered
3722 (setq ref (cdr ref)))))) 3722 (setq ref (cdr ref))))))
3723 (while arts 3723 (while arts
3724 (gnus-agent-append-to-list tail-uncached (pop arts))) 3724 (gnus-agent-append-to-list tail-uncached (pop arts)))
@@ -4022,7 +4022,7 @@ If REREAD is not nil, downloaded articles are marked as unread."
4022 ;; article (with the exception of the last ID in the list - it's 4022 ;; article (with the exception of the last ID in the list - it's
4023 ;; special) that no longer appears in the overview. In this 4023 ;; special) that no longer appears in the overview. In this
4024 ;; situtation, the last article ID in the list implies that it, 4024 ;; situtation, the last article ID in the list implies that it,
4025 ;; and every article ID preceeding it, have been fetched from the 4025 ;; and every article ID preceding it, have been fetched from the
4026 ;; server. 4026 ;; server.
4027 4027
4028 (if gnus-agent-consider-all-articles 4028 (if gnus-agent-consider-all-articles
diff --git a/lisp/gnus/gnus-range.el b/lisp/gnus/gnus-range.el
index 7e917c03953..e75c975d718 100644
--- a/lisp/gnus/gnus-range.el
+++ b/lisp/gnus/gnus-range.el
@@ -87,10 +87,10 @@ Both ranges must be in ascending order."
87 ;; All done with range2 87 ;; All done with range2
88 (setq r nil)) 88 (setq r nil))
89 ((< max1 min2) 89 ((< max1 min2)
90 ;; No overlap: range1 preceeds range2 90 ;; No overlap: range1 precedes range2
91 (pop r)) 91 (pop r))
92 ((< max2 min1) 92 ((< max2 min1)
93 ;; No overlap: range2 preceeds range1 93 ;; No overlap: range2 precedes range1
94 (pop range2)) 94 (pop range2))
95 ((and (<= min2 min1) (<= max1 max2)) 95 ((and (<= min2 min1) (<= max1 max2))
96 ;; Complete overlap: range1 removed 96 ;; Complete overlap: range1 removed
@@ -187,7 +187,7 @@ LIST1 and LIST2 have to be sorted over <."
187RANGE1 and RANGE2 have to be sorted over <." 187RANGE1 and RANGE2 have to be sorted over <."
188 (let* (out 188 (let* (out
189 (min1 (car range1)) 189 (min1 (car range1))
190 (max1 (if (numberp min1) 190 (max1 (if (numberp min1)
191 (if (numberp (cdr range1)) 191 (if (numberp (cdr range1))
192 (prog1 (cdr range1) 192 (prog1 (cdr range1)
193 (setq range1 nil)) min1) 193 (setq range1 nil)) min1)
@@ -196,17 +196,17 @@ RANGE1 and RANGE2 have to be sorted over <."
196 (min2 (car range2)) 196 (min2 (car range2))
197 (max2 (if (numberp min2) 197 (max2 (if (numberp min2)
198 (if (numberp (cdr range2)) 198 (if (numberp (cdr range2))
199 (prog1 (cdr range2) 199 (prog1 (cdr range2)
200 (setq range2 nil)) min2) 200 (setq range2 nil)) min2)
201 (prog1 (cdr min2) 201 (prog1 (cdr min2)
202 (setq min2 (car min2)))))) 202 (setq min2 (car min2))))))
203 (setq range1 (cdr range1) 203 (setq range1 (cdr range1)
204 range2 (cdr range2)) 204 range2 (cdr range2))
205 (while (and min1 min2) 205 (while (and min1 min2)
206 (cond ((< max1 min2) ; range1 preceeds range2 206 (cond ((< max1 min2) ; range1 precedes range2
207 (setq range1 (cdr range1) 207 (setq range1 (cdr range1)
208 min1 nil)) 208 min1 nil))
209 ((< max2 min1) ; range2 preceeds range1 209 ((< max2 min1) ; range2 precedes range1
210 (setq range2 (cdr range2) 210 (setq range2 (cdr range2)
211 min2 nil)) 211 min2 nil))
212 (t ; some sort of overlap is occurring 212 (t ; some sort of overlap is occurring
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el
index c14ec7f4c64..1d6216cbecb 100644
--- a/lisp/gnus/gnus-start.el
+++ b/lisp/gnus/gnus-start.el
@@ -1582,7 +1582,7 @@ If SCAN, request a scan of that group as well."
1582 (num 0)) 1582 (num 0))
1583 1583
1584 ;; These checks are present in gnus-activate-group but skipped 1584 ;; These checks are present in gnus-activate-group but skipped
1585 ;; due to setting dont-check in the preceeding call. 1585 ;; due to setting dont-check in the preceding call.
1586 1586
1587 ;; If a cache is present, we may have to alter the active info. 1587 ;; If a cache is present, we may have to alter the active info.
1588 (when (and gnus-use-cache info) 1588 (when (and gnus-use-cache info)
@@ -1908,7 +1908,7 @@ If SCAN, request a scan of that group as well."
1908 ;; OK - I'm done 1908 ;; OK - I'm done
1909 (setq articles nil)) 1909 (setq articles nil))
1910 ((< range article) 1910 ((< range article)
1911 ;; this range preceeds the article. Leave the range unmodified. 1911 ;; this range precedes the article. Leave the range unmodified.
1912 (pop ranges) 1912 (pop ranges)
1913 ranges) 1913 ranges)
1914 ((= range article) 1914 ((= range article)
@@ -1931,11 +1931,11 @@ If SCAN, request a scan of that group as well."
1931 (setcar ranges min) 1931 (setcar ranges min)
1932 ranges) 1932 ranges)
1933 ((< max article) 1933 ((< max article)
1934 ;; this range preceeds the article. Leave the range unmodified. 1934 ;; this range precedes the article. Leave the range unmodified.
1935 (pop ranges) 1935 (pop ranges)
1936 ranges) 1936 ranges)
1937 ((< article min) 1937 ((< article min)
1938 ;; this article preceeds the range. Return null to move to the 1938 ;; this article precedes the range. Return null to move to the
1939 ;; next article 1939 ;; next article
1940 nil) 1940 nil)
1941 (t 1941 (t
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el
index e09b1af3abe..6eb97182c2f 100644
--- a/lisp/gnus/nntp.el
+++ b/lisp/gnus/nntp.el
@@ -1632,7 +1632,7 @@ password contained in '~/.nntp-authinfo'."
1632 1632
1633 ;; Some nntp servers seem to have an extension to the XOVER 1633 ;; Some nntp servers seem to have an extension to the XOVER
1634 ;; extension. On these servers, requesting an article range 1634 ;; extension. On these servers, requesting an article range
1635 ;; preceeding the active range does not return an error as 1635 ;; preceding the active range does not return an error as
1636 ;; specified in the RFC. What we instead get is the NOV entry 1636 ;; specified in the RFC. What we instead get is the NOV entry
1637 ;; for the first available article. Obviously, a client can 1637 ;; for the first available article. Obviously, a client can
1638 ;; use that entry to avoid making unnecessary requests. The 1638 ;; use that entry to avoid making unnecessary requests. The
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 5e9baed1c2e..039f8cc9cb9 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -514,7 +514,7 @@ FIELD is the plain text name of a field in the message, such as
514\"subject\" or \"from\". A FIELD of \"to\" will automatically include 514\"subject\" or \"from\". A FIELD of \"to\" will automatically include
515all text from the \"cc\" field as well. 515all text from the \"cc\" field as well.
516 516
517REGEXP is an expression to match in the preceeding specified FIELD. 517REGEXP is an expression to match in the preceding specified FIELD.
518FIELD/REGEXP pairs continue in the list. 518FIELD/REGEXP pairs continue in the list.
519 519
520examples: 520examples:
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el
index 479eaae0aef..2707c62d82f 100644
--- a/lisp/net/tramp-gvfs.el
+++ b/lisp/net/tramp-gvfs.el
@@ -139,7 +139,7 @@
139 (add-to-list 'tramp-methods (cons elt nil)))))) 139 (add-to-list 'tramp-methods (cons elt nil))))))
140 140
141(defconst tramp-gvfs-path-tramp (concat dbus-path-emacs "/Tramp") 141(defconst tramp-gvfs-path-tramp (concat dbus-path-emacs "/Tramp")
142 "The preceeding object path for own objects.") 142 "The preceding object path for own objects.")
143 143
144(defconst tramp-gvfs-service-daemon "org.gtk.vfs.Daemon" 144(defconst tramp-gvfs-service-daemon "org.gtk.vfs.Daemon"
145 "The well known name of the GVFS daemon.") 145 "The well known name of the GVFS daemon.")
diff --git a/lisp/obsolete/sym-comp.el b/lisp/obsolete/sym-comp.el
index fc2da0ff69e..c77d53c0dd2 100644
--- a/lisp/obsolete/sym-comp.el
+++ b/lisp/obsolete/sym-comp.el
@@ -51,7 +51,7 @@ Uses `current-word' with the buffer narrowed to the part before
51point." 51point."
52 (save-restriction 52 (save-restriction
53 ;; Narrow in case point is in the middle of a symbol -- we want 53 ;; Narrow in case point is in the middle of a symbol -- we want
54 ;; just the preceeding part. 54 ;; just the preceding part.
55 (narrow-to-region (point-min) (point)) 55 (narrow-to-region (point-min) (point))
56 (current-word))) 56 (current-word)))
57 57
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index 3fdcd65ab9c..3910ae0c166 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -2770,7 +2770,7 @@ Will not look before LIM."
2770 (goto-char (cperl-beginning-of-property p look-prop)) 2770 (goto-char (cperl-beginning-of-property p look-prop))
2771 (beginning-of-line) 2771 (beginning-of-line)
2772 (setq pre-indent-point (point))))) 2772 (setq pre-indent-point (point)))))
2773 (goto-char pre-indent-point) ; Orig line skipping preceeding pod/etc 2773 (goto-char pre-indent-point) ; Orig line skipping preceding pod/etc
2774 (let* ((case-fold-search nil) 2774 (let* ((case-fold-search nil)
2775 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data))) 2775 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data)))
2776 (start (or (nth 2 parse-data) ; last complete sexp terminated 2776 (start (or (nth 2 parse-data) ; last complete sexp terminated
@@ -2797,8 +2797,8 @@ Will not look before LIM."
2797 (cperl-1+ char-after-pos) 'indentable) 2797 (cperl-1+ char-after-pos) 'indentable)
2798 p (1+ (cperl-beginning-of-property 2798 p (1+ (cperl-beginning-of-property
2799 (point) 'indentable)) 2799 (point) 'indentable))
2800 is-block ; misused for: preceeding line in REx 2800 is-block ; misused for: preceding line in REx
2801 (save-excursion ; Find preceeding line 2801 (save-excursion ; Find preceding line
2802 (cperl-backward-to-noncomment p) 2802 (cperl-backward-to-noncomment p)
2803 (beginning-of-line) 2803 (beginning-of-line)
2804 (if (<= (point) p) 2804 (if (<= (point) p)
@@ -2814,10 +2814,10 @@ Will not look before LIM."
2814 prop (parse-partial-sexp p char-after-pos)) 2814 prop (parse-partial-sexp p char-after-pos))
2815 (cond ((not delim) ; End the REx, ignore is-block 2815 (cond ((not delim) ; End the REx, ignore is-block
2816 (vector 'indentable 'terminator p is-block)) 2816 (vector 'indentable 'terminator p is-block))
2817 (is-block ; Indent w.r.t. preceeding line 2817 (is-block ; Indent w.r.t. preceding line
2818 (vector 'indentable 'cont-line char-after-pos 2818 (vector 'indentable 'cont-line char-after-pos
2819 is-block char-after p)) 2819 is-block char-after p))
2820 (t ; No preceeding line... 2820 (t ; No preceding line...
2821 (vector 'indentable 'first-line p)))) 2821 (vector 'indentable 'first-line p))))
2822 ((get-text-property char-after-pos 'REx-part2) 2822 ((get-text-property char-after-pos 'REx-part2)
2823 (vector 'REx-part2 (point))) 2823 (vector 'REx-part2 (point)))
@@ -2898,7 +2898,7 @@ Will not look before LIM."
2898 (cperl-backward-to-start-of-continued-exp containing-sexp)) 2898 (cperl-backward-to-start-of-continued-exp containing-sexp))
2899 (beginning-of-line) 2899 (beginning-of-line)
2900 (cperl-backward-to-noncomment containing-sexp)) 2900 (cperl-backward-to-noncomment containing-sexp))
2901 ;; Now we get non-label preceeding the indent point 2901 ;; Now we get non-label preceding the indent point
2902 (if (not (or (eq (1- (point)) containing-sexp) 2902 (if (not (or (eq (1- (point)) containing-sexp)
2903 (memq (preceding-char) 2903 (memq (preceding-char)
2904 (append (if is-block " ;{" " ,;{") '(nil))) 2904 (append (if is-block " ;{" " ,;{") '(nil)))
@@ -4840,7 +4840,7 @@ the sections using `cperl-pod-head-face', `cperl-pod-face',
4840;;; Moreover, one takes positive approach (looks for else,grep etc) 4840;;; Moreover, one takes positive approach (looks for else,grep etc)
4841;;; another negative (looks for bless,tr etc) 4841;;; another negative (looks for bless,tr etc)
4842(defun cperl-after-block-p (lim &optional pre-block) 4842(defun cperl-after-block-p (lim &optional pre-block)
4843 "Return true if the preceeding } (if PRE-BLOCK, following {) delimits a block. 4843 "Return true if the preceding } (if PRE-BLOCK, following {) delimits a block.
4844Would not look before LIM. Assumes that LIM is a good place to begin a 4844Would not look before LIM. Assumes that LIM is a good place to begin a
4845statement. The kind of block we treat here is one after which a new 4845statement. The kind of block we treat here is one after which a new
4846statement would start; thus the block in ${func()} does not count." 4846statement would start; thus the block in ${func()} does not count."
@@ -4869,7 +4869,7 @@ statement would start; thus the block in ${func()} does not count."
4869 (progn 4869 (progn
4870 (forward-sexp -1) 4870 (forward-sexp -1)
4871 (looking-at "sub[ \t\n\f#]")))))) 4871 (looking-at "sub[ \t\n\f#]"))))))
4872 ;; What preceeds is not word... XXXX Last statement in sub??? 4872 ;; What precedes is not word... XXXX Last statement in sub???
4873 (cperl-after-expr-p lim)))) 4873 (cperl-after-expr-p lim))))
4874 (error nil)))) 4874 (error nil))))
4875 4875
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index c8522c72521..aaedd620e32 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -429,7 +429,7 @@ path \(the value of !PATH). However, under Windows and MacOS
429variable can be set to specify the paths where IDLWAVE can find PRO 429variable can be set to specify the paths where IDLWAVE can find PRO
430files. The shell will only be asked for a list of paths when this 430files. The shell will only be asked for a list of paths when this
431variable is nil. The value is a list of directories. A directory 431variable is nil. The value is a list of directories. A directory
432preceeded by a `+' will be searched recursively. If you set this 432preceded by a `+' will be searched recursively. If you set this
433variable on a UNIX system, the shell will not be queried. See also 433variable on a UNIX system, the shell will not be queried. See also
434`idlwave-system-directory'." 434`idlwave-system-directory'."
435 :group 'idlwave-routine-info 435 :group 'idlwave-routine-info
@@ -1198,7 +1198,7 @@ As a user, you should not set this to t.")
1198 (2 font-lock-function-name-face))) 1198 (2 font-lock-function-name-face)))
1199 1199
1200 ;; Keyword parameters, like /xlog or ,xrange=[] 1200 ;; Keyword parameters, like /xlog or ,xrange=[]
1201 ;; This is anchored to the comma preceeding the keyword. 1201 ;; This is anchored to the comma preceding the keyword.
1202 ;; Treats continuation lines, works only during whole buffer 1202 ;; Treats continuation lines, works only during whole buffer
1203 ;; fontification. Slow, use it only in fancy fontification. 1203 ;; fontification. Slow, use it only in fancy fontification.
1204 (keyword-parameters 1204 (keyword-parameters
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el
index 7ca8a7589c4..86b917767a9 100644
--- a/lisp/progmodes/vhdl-mode.el
+++ b/lisp/progmodes/vhdl-mode.el
@@ -1792,7 +1792,7 @@ NOTE: Activate the new setting by restarting Emacs.
1792 1792
1793(defcustom vhdl-intelligent-tab t 1793(defcustom vhdl-intelligent-tab t
1794 "*Non-nil means `TAB' does indentation, word completion and tab insertion. 1794 "*Non-nil means `TAB' does indentation, word completion and tab insertion.
1795That is, if preceeding character is part of a word then complete word, 1795That is, if preceding character is part of a word then complete word,
1796else if not at beginning of line then insert tab, 1796else if not at beginning of line then insert tab,
1797else if last command was a `TAB' or `RET' then dedent one step, 1797else if last command was a `TAB' or `RET' then dedent one step,
1798else indent current line (i.e. `TAB' is bound to `vhdl-electric-tab'). 1798else indent current line (i.e. `TAB' is bound to `vhdl-electric-tab').
@@ -6974,7 +6974,7 @@ only-lines."
6974;; Indentation commands 6974;; Indentation commands
6975 6975
6976(defun vhdl-electric-tab (&optional prefix-arg) 6976(defun vhdl-electric-tab (&optional prefix-arg)
6977 "If preceeding character is part of a word or a paren then hippie-expand, 6977 "If preceding character is part of a word or a paren then hippie-expand,
6978else if right of non whitespace on line then insert tab, 6978else if right of non whitespace on line then insert tab,
6979else if last command was a tab or return then dedent one step or if a comment 6979else if last command was a tab or return then dedent one step or if a comment
6980toggle between normal indent and inline comment indent, 6980toggle between normal indent and inline comment indent,
@@ -10440,7 +10440,7 @@ with double-quotes is to be inserted. DEFAULT specifies a default string."
10440 (if vhdl-upper-case-keywords (upcase-word num) (downcase-word num))) 10440 (if vhdl-upper-case-keywords (upcase-word num) (downcase-word num)))
10441 10441
10442(defun vhdl-minibuffer-tab (&optional prefix-arg) 10442(defun vhdl-minibuffer-tab (&optional prefix-arg)
10443 "If preceeding character is part of a word or a paren then hippie-expand, 10443 "If preceding character is part of a word or a paren then hippie-expand,
10444else insert tab (used for word completion in VHDL minibuffer)." 10444else insert tab (used for word completion in VHDL minibuffer)."
10445 (interactive "P") 10445 (interactive "P")
10446 (cond 10446 (cond
@@ -13104,7 +13104,7 @@ hierarchy otherwise.")
13104;; Scan functions 13104;; Scan functions
13105 13105
13106(defun vhdl-scan-context-clause () 13106(defun vhdl-scan-context-clause ()
13107 "Scan the context clause that preceeds a design unit." 13107 "Scan the context clause that precedes a design unit."
13108 (let (lib-alist) 13108 (let (lib-alist)
13109 (save-excursion 13109 (save-excursion
13110 (when (re-search-backward "^[ \t]*\\(architecture\\|configuration\\|entity\\|package\\)\\>" nil t) 13110 (when (re-search-backward "^[ \t]*\\(architecture\\|configuration\\|entity\\|package\\)\\>" nil t)
diff --git a/lisp/replace.el b/lisp/replace.el
index 3d1a8577747..0b90c94c7fa 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1402,7 +1402,7 @@ N (match-string N) (where N is a string of digits)
1402#& (string-to-number (match-string 0)) 1402#& (string-to-number (match-string 0))
1403# replace-count 1403# replace-count
1404 1404
1405Note that these symbols must be preceeded by a backslash in order to 1405Note that these symbols must be preceded by a backslash in order to
1406type them using Lisp syntax." 1406type them using Lisp syntax."
1407 (while (consp n) 1407 (while (consp n)
1408 (cond 1408 (cond
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index bea8c8166f7..95ff1327b42 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -43,7 +43,7 @@ only considered as a candidate to match `paragraph-start' or
43 43
44Prefix argument says to turn mode on if positive, off if negative. 44Prefix argument says to turn mode on if positive, off if negative.
45When the mode is turned on, if there are newlines in the buffer but no hard 45When the mode is turned on, if there are newlines in the buffer but no hard
46newlines, ask the user whether to mark as hard any newlines preceeding a 46newlines, ask the user whether to mark as hard any newlines preceding a
47`paragraph-start' line. From a program, second arg INSERT specifies whether 47`paragraph-start' line. From a program, second arg INSERT specifies whether
48to do this; it can be `never' to change nothing, t or `always' to force 48to do this; it can be `never' to change nothing, t or `always' to force
49marking, `guess' to try to do the right thing with no questions, nil 49marking, `guess' to try to do the right thing with no questions, nil
diff --git a/src/w32proc.c b/src/w32proc.c
index 5ac0a1b57ec..579c9ca7d67 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -872,7 +872,7 @@ sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
872 872
873 Note that using backslash to escape embedded quotes requires 873 Note that using backslash to escape embedded quotes requires
874 additional special handling if an embedded quote is already 874 additional special handling if an embedded quote is already
875 preceeded by backslash, or if an arg requiring quoting ends with 875 preceded by backslash, or if an arg requiring quoting ends with
876 backslash. In such cases, the run of escape characters needs to be 876 backslash. In such cases, the run of escape characters needs to be
877 doubled. For consistency, we apply this special handling as long 877 doubled. For consistency, we apply this special handling as long
878 as the escape character is not quote. 878 as the escape character is not quote.