emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/syntax.c


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/src/syntax.c
Date: Fri, 31 Jan 2003 10:38:54 -0500

Index: emacs/src/syntax.c
diff -c emacs/src/syntax.c:1.160 emacs/src/syntax.c:1.161
*** emacs/src/syntax.c:1.160    Thu Nov 14 09:17:40 2002
--- emacs/src/syntax.c  Fri Jan 31 10:38:54 2003
***************
*** 1307,1313 ****
   (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.  */)
       (string, lim)
       Lisp_Object string, lim;
  {
--- 1307,1315 ----
   (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.
! Note that char classes, e.g. `[:alpha:]', are not currently supported;
! they will be treated as literals.  */)
       (string, lim)
       Lisp_Object string, lim;
  {
***************
*** 2994,3000 ****
  
    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.  */);
    open_paren_in_column_0_is_defun_start = 1;
  
    defsubr (&Ssyntax_table_p);
--- 2996,3002 ----
  
    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.  */);
    open_paren_in_column_0_is_defun_start = 1;
  
    defsubr (&Ssyntax_table_p);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]