Correct typos, enhance comments.

This commit is contained in:
Alan Mackenzie 2008-01-27 17:03:43 +00:00
parent b931ca9525
commit 022d0cf4cd
2 changed files with 7 additions and 6 deletions

View file

@ -478,7 +478,7 @@
(defun c-awk-get-NL-prop-prev-line (&optional do-lim)
;; Get the c-awk-NL-prop text-property from the previous line, calculating
;; it if necessary. Return nil if we're at BOB.
;; it if necessary. Return nil if we're already at BOB.
;; See c-awk-after-if-for-while-condition-p for a description of DO-LIM.
;;
;; This function might do hidden buffer changes.

View file

@ -5094,7 +5094,8 @@ comment at the start of cc-engine.el for more info."
;;
;; The point is left at the first token after the first complete
;; declarator, if there is one. The return value is a cons where
;; the car is the position of the first token in the declarator.
;; the car is the position of the first token in the declarator. (See
;; below for the cdr.)
;; Some examples:
;;
;; void foo (int a, char *b) stuff ...
@ -5118,9 +5119,9 @@ comment at the start of cc-engine.el for more info."
;; Foo::Foo (int b) : Base (b) {}
;; car ^ ^ point
;;
;; The cdr of the return value is non-nil if a
;; `c-typedef-decl-kwds' specifier is found in the declaration,
;; i.e. the declared identifier(s) are types.
;; The cdr of the return value is non-nil iff a `c-typedef-decl-kwds'
;; specifier (e.g. class, struct, enum, typedef) is found in the
;; declaration, i.e. the declared identifier(s) are types.
;;
;; If a cast is parsed:
;;
@ -5135,7 +5136,7 @@ comment at the start of cc-engine.el for more info."
;; the first token in (the visible part of) the buffer.
;;
;; CONTEXT is a symbol that describes the context at the point:
;; 'decl In a comma-separatded declaration context (typically
;; 'decl In a comma-separated declaration context (typically
;; inside a function declaration arglist).
;; '<> In an angle bracket arglist.
;; 'arglist Some other type of arglist.