]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fskip_chars_forward)
authorDave Love <fx@gnu.org>
Fri, 31 Jan 2003 15:39:48 +0000 (15:39 +0000)
committerDave Love <fx@gnu.org>
Fri, 31 Jan 2003 15:39:48 +0000 (15:39 +0000)
(open-paren-in-column-0-is-defun-start): Doc fix.

src/ChangeLog
src/syntax.c

index 06580d307a007562a7d0b0465e4c9ec2df1ce8d4..d062b482bb27016b4fdf3041883cc56c44a394b1 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-31  Dave Love  <fx@gnu.org>
+
+       * syntax.c (Fskip_chars_forward)
+       (open-paren-in-column-0-is-defun-start): Doc fix.
+
 2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>
 
        * fileio.c: Support // at start of name for Cygwin (just added proper
index b217404e87db60b7199cc6024792f1e7b3e72e34..116249fe2839811ef2a09cb0c1c0ef0f28e5c1bc 100644 (file)
@@ -1307,7 +1307,9 @@ except that `]' is never special and `\\' quotes `^', `-' or `\\'
  (but not as the end of a range; quoting is never needed there).
 Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
 With arg "^a-zA-Z", skips nonletters stopping before first letter.
-Returns the distance traveled, either zero or positive.  */)
+Returns the distance traveled, either zero or positive.
+Note that char classes, e.g. `[:alpha:]', are not currently supported;
+they will be treated as literals.  */)
      (string, lim)
      Lisp_Object string, lim;
 {
@@ -2994,7 +2996,7 @@ See the info node `(elisp)Syntax Properties' for a description of the
 
   DEFVAR_BOOL ("open-paren-in-column-0-is-defun-start",
               &open_paren_in_column_0_is_defun_start,
-              doc: /* Non-nil means an open paren in column 0 denotes the start of a defun.  */);
+              doc: /* *Non-nil means an open paren in column 0 denotes the start of a defun.  */);
   open_paren_in_column_0_is_defun_start = 1;
 
   defsubr (&Ssyntax_table_p);