Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1b5eaeb3
Commit
1b5eaeb3
authored
Jul 15, 2011
by
Lars Magne Ingebrigtsen
Browse files
Minor grammer fixes for syntax.el.
Fixes: debbugs:8690
parent
4bf0979f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
lisp/emacs-lisp/cl-loaddefs.el
lisp/emacs-lisp/cl-loaddefs.el
+6
-1
lisp/emacs-lisp/syntax.el
lisp/emacs-lisp/syntax.el
+2
-2
No files found.
lisp/emacs-lisp/cl-loaddefs.el
View file @
1b5eaeb3
...
...
@@ -282,7 +282,7 @@ Not documented
;;;;;; 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 @@ values. For compatibility, (values A B C) is a synonym for (list A B C).
\(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))
...
...
lisp/emacs-lisp/syntax.el
View file @
1b5eaeb3
...
...
@@ -100,7 +100,7 @@ Put first the functions more likely to cause a change and cheaper to compute.")
(
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 @@ The return value is a function suitable for `syntax-propertize-function'."
(
setq
keywords
font-lock-syntactic-keywords
))))))
(
defun
syntax-propertize
(
pos
)
"Ensure that syntax-table properties are set u
pto
POS."
"Ensure that syntax-table properties are set u
ntil
POS."
(
when
(
and
syntax-propertize-function
(
<
syntax-propertize--done
pos
))
;; (message "Needs to syntax-propertize from %s to %s"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment