emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110899: * lisp/emacs-lisp/syntax.


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110899: * lisp/emacs-lisp/syntax.el (syntax-propertize-function): Doc fix.
Date: Sat, 17 Nov 2012 15:33:01 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110899
fixes bug: http://debbugs.gnu.org/12810
committer: Chong Yidong <address@hidden>
branch nick: emacs-24
timestamp: Sat 2012-11-17 15:33:01 +0800
message:
  * lisp/emacs-lisp/syntax.el (syntax-propertize-function): Doc fix.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/syntax.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-11-17 07:06:57 +0000
+++ b/lisp/ChangeLog    2012-11-17 07:33:01 +0000
@@ -1,3 +1,8 @@
+2012-11-17  Chong Yidong  <address@hidden>
+
+       * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
+       (Bug#12810).
+
 2012-11-17  OKAZAKI Tetsurou  <address@hidden>  (tiny change)
 
        * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge

=== modified file 'lisp/emacs-lisp/syntax.el'
--- a/lisp/emacs-lisp/syntax.el 2012-06-23 15:38:23 +0000
+++ b/lisp/emacs-lisp/syntax.el 2012-11-17 07:33:01 +0000
@@ -55,12 +55,18 @@
   ;; have to flush that cache between each function, and we couldn't use
   ;; syntax-ppss-flush-cache since that would not only flush the cache but also
   ;; reset syntax-propertize--done which should not be done in this case).
-  "Mode-specific function to apply the syntax-table properties.
-Called with two arguments: START and END.
-This function can call `syntax-ppss' on any position before END, but it
-should not call `syntax-ppss-flush-cache', which means that it should not
-call `syntax-ppss' on some position and later modify the buffer on some
-earlier position.")
+  "Mode-specific function to apply `syntax-table' text properties.
+The value of this variable is a function to be called by Font
+Lock mode, prior to performing syntactic fontification on a
+stretch of text.  It is given two arguments, START and END: the
+start and end of the text to be fontified.  Major modes can
+specify a custom function to apply `syntax-table' properties to
+override the default syntax table in special cases.
+
+The specified function may call `syntax-ppss' on any position
+before END, but it should not call `syntax-ppss-flush-cache',
+which means that it should not call `syntax-ppss' on some
+position and later modify the buffer on some earlier position.")
 
 (defvar syntax-propertize-chunk-size 500)
 
@@ -118,7 +124,7 @@
 The return value is an object that can be passed as a rule to
 `syntax-propertize-rules'.
 I.e. this is useful only when you want to share rules among several
-syntax-propertize-functions."
+`syntax-propertize-function's."
   (declare (debug syntax-propertize-rules))
   ;; Precompile?  Yeah, right!
   ;; Seriously, tho, this is a macro for 2 reasons:


reply via email to

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