mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(c-crosses-statement-barrier-p): Fix typo in docstring.
This commit is contained in:
parent
10cfe02cdc
commit
b414f37153
1 changed files with 13 additions and 13 deletions
|
|
@ -604,7 +604,7 @@ comment at the start of cc-engine.el for more info."
|
|||
;; (e.g. if).
|
||||
;;
|
||||
;;
|
||||
;; The following diagram briefly outlines the PDA.
|
||||
;; The following diagram briefly outlines the PDA.
|
||||
;;
|
||||
;; Common state:
|
||||
;; "else": Push state, goto state `else'.
|
||||
|
|
@ -1079,7 +1079,7 @@ single `?' is found, then `c-maybe-labelp' is cleared.
|
|||
|
||||
For AWK, a statement which is terminated by an EOL (not a \; or a }) is
|
||||
regarded as having a \"virtual semicolon\" immediately after the last token on
|
||||
the line. If this virtual semicolon is _at_ from, the function recognises it.
|
||||
the line. If this virtual semicolon is _at_ from, the function recognizes it.
|
||||
|
||||
Note that this function might do hidden buffer changes. See the
|
||||
comment at the start of cc-engine.el for more info."
|
||||
|
|
@ -1916,7 +1916,7 @@ comment at the start of cc-engine.el for more info."
|
|||
(defun c-partial-ws-p (beg end)
|
||||
;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
|
||||
;; region? This is a "heuristic" function. .....
|
||||
;;
|
||||
;;
|
||||
;; The motivation for the second bit is to check whether removing this
|
||||
;; region would coalesce two symbols.
|
||||
;;
|
||||
|
|
@ -3291,7 +3291,7 @@ comment at the start of cc-engine.el for more info."
|
|||
;; The workaround for this is for the AWK Mode initialisation to switch the
|
||||
;; defalias for c-in-literal to c-slow-in-literal. This will slow down other
|
||||
;; cc-modes in Xemacs whenever an awk-buffer has been initialised.
|
||||
;;
|
||||
;;
|
||||
;; (Alan Mackenzie, 2003/4/30).
|
||||
|
||||
(defun c-fast-in-literal (&optional lim detect-cpp)
|
||||
|
|
@ -3406,7 +3406,7 @@ comment at the start of cc-engine.el for more info."
|
|||
(if (and (consp range) (progn
|
||||
(goto-char (car range))
|
||||
(looking-at c-line-comment-starter)))
|
||||
(let ((col (current-column))
|
||||
(let ((col (current-column))
|
||||
(beg (point))
|
||||
(bopl (c-point 'bopl))
|
||||
(end (cdr range)))
|
||||
|
|
@ -4045,7 +4045,7 @@ comment at the start of cc-engine.el for more info."
|
|||
;; example, this happens to "foo" when "foo \n bar();" becomes
|
||||
;; "foo(); \n bar();". Such stale types, if not removed, foul up
|
||||
;; the fontification.
|
||||
;;
|
||||
;;
|
||||
;; Have we, perhaps, added non-ws characters to the front/back of a found
|
||||
;; type?
|
||||
(when (> end beg)
|
||||
|
|
@ -4064,7 +4064,7 @@ comment at the start of cc-engine.el for more info."
|
|||
(c-beginning-of-current-token)))
|
||||
(c-unfind-type (buffer-substring-no-properties
|
||||
(point) beg))))))
|
||||
|
||||
|
||||
(if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
|
||||
(cond
|
||||
;; Changing the amount of (already existing) whitespace - don't do anything.
|
||||
|
|
@ -5929,7 +5929,7 @@ comment at the start of cc-engine.el for more info."
|
|||
macro-start ; if we're in one.
|
||||
label-type)
|
||||
(cond
|
||||
;; "case" or "default" (Doesn't apply to AWK).
|
||||
;; "case" or "default" (Doesn't apply to AWK).
|
||||
((looking-at c-label-kwds-regexp)
|
||||
(let ((kwd-end (match-end 1)))
|
||||
;; Record only the keyword itself for fontification, since in
|
||||
|
|
@ -6048,7 +6048,7 @@ comment at the start of cc-engine.el for more info."
|
|||
(c-forward-label nil pte start))))))))))
|
||||
|
||||
;; Point is still at the beginning of the possible label construct.
|
||||
;;
|
||||
;;
|
||||
;; Check that the next nonsymbol token is ":", or that we're in one
|
||||
;; of QT's "slots" declarations. Allow '(' for the sake of macro
|
||||
;; arguments. FIXME: Should build this regexp from the language
|
||||
|
|
@ -6074,7 +6074,7 @@ comment at the start of cc-engine.el for more info."
|
|||
(and (c-major-mode-is 'c++-mode)
|
||||
(string-match
|
||||
"\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
|
||||
(buffer-substring start (point)))))
|
||||
(buffer-substring start (point)))))
|
||||
(c-forward-syntactic-ws limit)
|
||||
(cond
|
||||
((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
|
||||
|
|
@ -7238,7 +7238,7 @@ comment at the start of cc-engine.el for more info."
|
|||
;; needed with further syntax elements of the types `substatement',
|
||||
;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
|
||||
;; `defun-block-intro'.
|
||||
;;
|
||||
;;
|
||||
;; Do the generic processing to anchor the given syntax symbol on
|
||||
;; the preceding statement: Skip over any labels and containing
|
||||
;; statements on the same line, and then search backward until we
|
||||
|
|
@ -7424,7 +7424,7 @@ comment at the start of cc-engine.el for more info."
|
|||
c-other-decl-block-key-in-symbols-alist))
|
||||
(max (c-point 'boi paren-pos) (point))))
|
||||
(t (c-add-syntax 'defun-block-intro nil))))
|
||||
|
||||
|
||||
(c-add-syntax 'statement-block-intro nil)))
|
||||
|
||||
(if (= paren-pos boi)
|
||||
|
|
@ -8264,7 +8264,7 @@ comment at the start of cc-engine.el for more info."
|
|||
'statement-cont)
|
||||
nil nil containing-sexp paren-state))
|
||||
))
|
||||
|
||||
|
||||
;; CASE 5F: Close of a non-class declaration level block.
|
||||
((and (eq char-after-ip ?})
|
||||
(c-keyword-member containing-decl-kwd
|
||||
|
|
|
|||
Loading…
Reference in a new issue