emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lispref/syntax.texi [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lispref/syntax.texi [lexbind]
Date: Tue, 14 Oct 2003 19:10:19 -0400

Index: emacs/lispref/syntax.texi
diff -c emacs/lispref/syntax.texi:1.24.4.1 emacs/lispref/syntax.texi:1.24.4.2
*** emacs/lispref/syntax.texi:1.24.4.1  Fri Apr  4 01:20:42 2003
--- emacs/lispref/syntax.texi   Tue Oct 14 19:10:12 2003
***************
*** 433,439 ****
  @exdent @r{Examples:}
  
  ;; @r{Put the space character in class whitespace.}
! (modify-syntax-entry ?\  " ")
       @result{} nil
  @end group
  
--- 433,439 ----
  @exdent @r{Examples:}
  
  ;; @r{Put the space character in class whitespace.}
! (modify-syntax-entry ?\s " ")
       @result{} nil
  @end group
  
***************
*** 479,485 ****
  
  @example
  @group
! (string (char-syntax ?\ ))
       @result{} " "
  @end group
  
--- 479,485 ----
  
  @example
  @group
! (string (char-syntax ?\s))
       @result{} " "
  @end group
  
***************
*** 769,774 ****
--- 769,778 ----
  end of a comment.  This limitation no longer exists.
  @end defvar
  
+ @vindex parse-sexp-lookup-properties
+ The behaviour of @code{parse-partial-sexp} is also affected by
+ @code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}).
+ 
  You can use @code{forward-comment} to move forward or backward over
  one comment or several comments.
  
***************
*** 781,787 ****
  place where it stopped.  This includes (for instance) finding the end
  of a comment when moving forward and expecting the beginning of one.
  The function also stops immediately after moving over the specified
! number of complete comments.
  
  This function cannot tell whether the ``comments'' it traverses are
  embedded within a string.  If they look like comments, it treats them
--- 785,793 ----
  place where it stopped.  This includes (for instance) finding the end
  of a comment when moving forward and expecting the beginning of one.
  The function also stops immediately after moving over the specified
! number of complete comments.  If @var{count} comments are found as
! expected, with nothing except whitespace between them, it returns
! @code{t}; otherwise it returns @code{nil}.
  
  This function cannot tell whether the ``comments'' it traverses are
  embedded within a string.  If they look like comments, it treats them
***************
*** 1061,1063 ****
--- 1067,1073 ----
  category table.  The descriptions are inserted in a buffer, which is
  then displayed.
  @end deffn
+ 
+ @ignore
+    arch-tag: 4d914e96-0283-445c-9233-75d33662908c
+ @end ignore




reply via email to

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