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
f74ab964
Commit
f74ab964
authored
Feb 17, 2018
by
Paul Eggert
Browse files
; Spelling and grammar fixes.
parent
42f9dc44
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
10 deletions
+9
-10
ChangeLog.2
ChangeLog.2
+1
-1
ChangeLog.3
ChangeLog.3
+1
-1
doc/misc/cl.texi
doc/misc/cl.texi
+3
-4
lisp/ChangeLog.6
lisp/ChangeLog.6
+1
-1
lisp/emacs-lisp/byte-opt.el
lisp/emacs-lisp/byte-opt.el
+1
-1
lisp/progmodes/cc-engine.el
lisp/progmodes/cc-engine.el
+2
-2
No files found.
ChangeLog.2
View file @
f74ab964
...
...
@@ -26364,7 +26364,7 @@
(verilog-calc-1): Detect 'pure virtual method' declarations which
exist in abstract classes. Reported by Enzo Chi and Kaushal Modi.
(verilog-backward-ws&directives): When moving back to the start of
a line and the prece
e
ding line ended with an escaped-newline, then
a line and the preceding line ended with an escaped-newline, then
jump up one line. This properly consumes a multi-line
pre-processor directive. Reported by Kaushal Modi.
(verilog-dpi-import-export-re, verilog-extended-complete-re)
ChangeLog.3
View file @
f74ab964
...
...
@@ -9905,7 +9905,7 @@
* lisp/man.el (Man-see-also-regexp): Add support for SEE ALSO
section detection in several langages: French, German, Spanish,
Portugese, Italian, Polish, Turkish, Japanese, Chinese. (Bug#28142)
Portug
u
ese, Italian, Polish, Turkish, Japanese, Chinese. (Bug#28142)
2017-08-26 Paul Eggert <eggert@cs.ucla.edu>
doc/misc/cl.texi
View file @
f74ab964
...
...
@@ -3124,12 +3124,11 @@ machines, but will fail if the machine's arithmetic is extremely
unusual, e.g., decimal.
@end defun
Since true Common Lisp supports up to four different floating-point
precision
s, it has families of constants like
Since true Common Lisp supports up to four different
kinds of
floating-point
number
s, it has families of constants like
@code{most-positive-single-float}, @code{most-positive-double-float},
@code{most-positive-long-float}, and so on. Emacs has only one
floating-point precision, so this package omits the precision word
from the constants'
names
.
kind of floating-point number, so this package just uses single constants.
@defvar cl-most-positive-float
This constant equals the largest value a Lisp float can hold.
...
...
lisp/ChangeLog.6
View file @
f74ab964
...
...
@@ -3506,7 +3506,7 @@
(sgml-beginning-of-tag, sgml-value): New functions.
(html-*): All these functions and variables are new.
Mostly they parametrize everything preceding.
Mostly they paramet
e
rize everything preceding.
* autoinsert.el (auto-insert-alist): For html-mode, use `sgml-tag'.
...
...
lisp/emacs-lisp/byte-opt.el
View file @
f74ab964
...
...
@@ -1399,7 +1399,7 @@
(
setq
offset
(
-
offset
#x80
)))
((
eq
bytedecomp-op
'byte-switch
)
(
cl-assert
(
hash-table-p
last-constant
)
nil
"byte-switch used without prece
e
ding hash table"
)
"byte-switch used without preceding hash table"
)
;; We cannot use the original hash table referenced in the op,
;; so we create a copy of it, and replace the addresses with
;; TAGs.
...
...
lisp/progmodes/cc-engine.el
View file @
f74ab964
...
...
@@ -2576,7 +2576,7 @@ comment at the start of cc-engine.el for more info."
;; or the car of the list is the "position element" of ELT, the position
;; where ELT is valid.
;;
;; POINT is left at the pos
t
ition for which the returned state is valid. It
;; POINT is left at the position for which the returned state is valid. It
;; will be either the position element of ELT, or one character before
;; that. (The latter happens in Emacs <= 25 and XEmacs, when ELT indicates
;; its position element directly follows a potential first character of a
...
...
@@ -2647,7 +2647,7 @@ comment at the start of cc-engine.el for more info."
((nth 3 state) ; A string
(list (point) (nth 3 state) (nth 8 state)))
((and (nth 4 state) ; A comment
(not (eq (nth 7 state) 'syntax-table))) ; but not a ps
u
edo comment.
(not (eq (nth 7 state) 'syntax-table))) ; but not a pse
u
do comment.
(list (point)
(if (eq (nth 7 state) 1) 'c++ 'c)
(nth 8 state)))
...
...
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