[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r105229: Minor grammer fixes for synt
From: |
Lars Magne Ingebrigtsen |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r105229: Minor grammer fixes for syntax.el. |
Date: |
Fri, 15 Jul 2011 15:55:00 +0200 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 105229
fixes bug(s): http://debbugs.gnu.org/8690
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Fri 2011-07-15 15:55:00 +0200
message:
Minor grammer fixes for syntax.el.
modified:
lisp/emacs-lisp/cl-loaddefs.el
lisp/emacs-lisp/syntax.el
=== modified file 'lisp/emacs-lisp/cl-loaddefs.el'
--- a/lisp/emacs-lisp/cl-loaddefs.el 2011-06-02 10:21:27 +0000
+++ b/lisp/emacs-lisp/cl-loaddefs.el 2011-07-15 13:55:00 +0000
@@ -282,7 +282,7 @@
;;;;;; flet progv psetq do-all-symbols do-symbols dotimes dolist
;;;;;; do* do loop return-from return block etypecase typecase ecase
;;;;;; case load-time-value eval-when destructuring-bind function*
-;;;;;; defmacro* defun* gentemp gensym) "cl-macs" "cl-macs.el"
"9f551dc739a39b3c8b420fbd1ab71879")
+;;;;;; defmacro* defun* gentemp gensym) "cl-macs" "cl-macs.el"
"dd99db1e96dff411cc5d484a639a1330")
;;; Generated autoloads from cl-macs.el
(autoload 'gensym "cl-macs" "\
@@ -541,7 +541,12 @@
\(fn TYPE FORM)" nil (quote macro))
(autoload 'declare "cl-macs" "\
-
+Declare something about SPECS while compiling.
+For instance
+
+ (declare (warn 0))
+
+will turn off byte-compile warnings.
\(fn &rest SPECS)" nil (quote macro))
=== modified file 'lisp/emacs-lisp/syntax.el'
--- a/lisp/emacs-lisp/syntax.el 2011-06-20 03:36:16 +0000
+++ b/lisp/emacs-lisp/syntax.el 2011-07-15 13:55:00 +0000
@@ -100,7 +100,7 @@
(cons beg end))
(defvar syntax-propertize--done -1
- "Position upto which syntax-table properties have been set.")
+ "Position up to which syntax-table properties have been set.")
(make-variable-buffer-local 'syntax-propertize--done)
(defun syntax-propertize--shift-groups (re n)
@@ -283,7 +283,7 @@
(setq keywords font-lock-syntactic-keywords))))))
(defun syntax-propertize (pos)
- "Ensure that syntax-table properties are set upto POS."
+ "Ensure that syntax-table properties are set until POS."
(when (and syntax-propertize-function
(< syntax-propertize--done pos))
;; (message "Needs to syntax-propertize from %s to %s"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r105229: Minor grammer fixes for syntax.el.,
Lars Magne Ingebrigtsen <=