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
b3946c9b
Commit
b3946c9b
authored
Dec 25, 2014
by
Paul Eggert
Browse files
Spelling fixes
parent
1e6879db
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
9 deletions
+9
-9
doc/emacs/trouble.texi
doc/emacs/trouble.texi
+1
-1
etc/NEWS
etc/NEWS
+1
-1
lisp/let-alist.el
lisp/let-alist.el
+1
-1
lisp/progmodes/etags.el
lisp/progmodes/etags.el
+1
-1
lisp/progmodes/xref.el
lisp/progmodes/xref.el
+2
-2
lisp/window.el
lisp/window.el
+1
-1
src/keyboard.c
src/keyboard.c
+1
-1
test/automated/let-alist.el
test/automated/let-alist.el
+1
-1
No files found.
doc/emacs/trouble.texi
View file @
b3946c9b
...
@@ -1231,7 +1231,7 @@ fix existing bug reports
...
@@ -1231,7 +1231,7 @@ fix existing bug reports
@url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}.
@url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}.
@item
@item
@c etc/TO
O
D not in WWW_GNU_ORG
@c etc/TOD
O
not in WWW_GNU_ORG
implement a feature listed in the @file{etc/TODO} file in the Emacs
implement a feature listed in the @file{etc/TODO} file in the Emacs
distribution, and submit a patch.
distribution, and submit a patch.
...
...
etc/NEWS
View file @
b3946c9b
...
@@ -440,7 +440,7 @@ and move to definitions, as well as pop back to the original location.
...
@@ -440,7 +440,7 @@ and move to definitions, as well as pop back to the original location.
*** New key bindings
*** New key bindings
`xref-find-definitions' replaces `find-tag' and provides an interface
`xref-find-definitions' replaces `find-tag' and provides an interface
to pick one destination among several. Hence, `tags-
t
oop-continue' is
to pick one destination among several. Hence, `tags-
l
oop-continue' is
unbound. `xref-pop-marker-stack' replaces `pop-tag-mark', but uses an
unbound. `xref-pop-marker-stack' replaces `pop-tag-mark', but uses an
easier binding, which is now unoccupied (`M-,').
easier binding, which is now unoccupied (`M-,').
`xref-find-definitions-other-window' replaces `find-tag-other-window'.
`xref-find-definitions-other-window' replaces `find-tag-other-window'.
...
...
lisp/let-alist.el
View file @
b3946c9b
...
@@ -77,7 +77,7 @@ symbol, and each cdr is the same symbol without the `.'."
...
@@ -77,7 +77,7 @@ symbol, and each cdr is the same symbol without the `.'."
(
mapcar
#'
let-alist--deep-dot-search
data
)))))
(
mapcar
#'
let-alist--deep-dot-search
data
)))))
(
defun
let-alist--access-sexp
(
symbol
variable
)
(
defun
let-alist--access-sexp
(
symbol
variable
)
"Return a sexp used to acess SYMBOL inside VARIABLE."
"Return a sexp used to ac
c
ess SYMBOL inside VARIABLE."
(
let*
((
clean
(
let-alist--remove-dot
symbol
))
(
let*
((
clean
(
let-alist--remove-dot
symbol
))
(
name
(
symbol-name
clean
)))
(
name
(
symbol-name
clean
)))
(
if
(
string-match
"\\`\\."
name
)
(
if
(
string-match
"\\`\\."
name
)
...
...
lisp/progmodes/etags.el
View file @
b3946c9b
...
@@ -2063,7 +2063,7 @@ for \\[find-tag] (which see)."
...
@@ -2063,7 +2063,7 @@ for \\[find-tag] (which see)."
;;; Xref backend
;;; Xref backend
;; Stop searching if we find more than xref-limit matches, as the xref
;; Stop searching if we find more than xref-limit matches, as the xref
;; infrastr
a
cture is not designed to handle very long lists.
;; infrastr
u
cture is not designed to handle very long lists.
;; Switching to some kind of lazy list might be better, but hopefully
;; Switching to some kind of lazy list might be better, but hopefully
;; we hit the limit rarely.
;; we hit the limit rarely.
(
defconst
etags--xref-limit
1000
)
(
defconst
etags--xref-limit
1000
)
...
...
lisp/progmodes/xref.el
View file @
b3946c9b
...
@@ -187,7 +187,7 @@ To create an xref object, call `xref-make'.")
...
@@ -187,7 +187,7 @@ To create an xref object, call `xref-make'.")
The return value must be a string or nil. nil means no
The return value must be a string or nil. nil means no
identifier at point found.
identifier at point found.
If it's hard to determin
t
e the identifier precisely (e.g. because
If it's hard to determine the identifier precisely (e.g.
,
because
it's a method call on unknown type), the implementation can
it's a method call on unknown type), the implementation can
return a simple string (such as symbol at point) marked with a
return a simple string (such as symbol at point) marked with a
special text property which `xref-find-function' would recognize
special text property which `xref-find-function' would recognize
...
@@ -348,7 +348,7 @@ WINDOW controls how the buffer is displayed:
...
@@ -348,7 +348,7 @@ WINDOW controls how the buffer is displayed:
(
xref--pop-to-location
loc
window
)))
(
xref--pop-to-location
loc
window
)))
(
define-derived-mode
xref--xref-buffer-mode
fundamental-mode
"XREF"
(
define-derived-mode
xref--xref-buffer-mode
fundamental-mode
"XREF"
"Mode for displaying cross-refe
n
ences."
"Mode for displaying cross-refe
r
ences."
(
setq
buffer-read-only
t
))
(
setq
buffer-read-only
t
))
(
let
((
map
xref--xref-buffer-mode-map
))
(
let
((
map
xref--xref-buffer-mode-map
))
...
...
lisp/window.el
View file @
b3946c9b
...
@@ -7870,7 +7870,7 @@ is active. This function is run by `mouse-autoselect-window-timer'."
...
@@ -7870,7 +7870,7 @@ is active. This function is run by `mouse-autoselect-window-timer'."
((
or
(
eq
mouse-autoselect-window-state
'suspend
)
((
or
(
eq
mouse-autoselect-window-state
'suspend
)
;; When the mouse is at its first recorded position, restart
;; When the mouse is at its first recorded position, restart
;; delayed autoselection. This works around a scenario with
;; delayed autoselection. This works around a scenario with
;; two two-window frames with identic dimensions:
S
elect the
;; two two-window frames with identic
al
dimensions:
s
elect the
;; first window of the first frame, switch to the second
;; first window of the first frame, switch to the second
;; frame, move the mouse to its second window, minimize the
;; frame, move the mouse to its second window, minimize the
;; second frame. Now the second window of the first frame
;; second frame. Now the second window of the first frame
...
...
src/keyboard.c
View file @
b3946c9b
...
@@ -276,7 +276,7 @@ bool input_pending;
...
@@ -276,7 +276,7 @@ bool input_pending;
/* True if more input was available last time we read an event.
/* True if more input was available last time we read an event.
Since redisplay can take a significant amount of time and is not
Since redisplay can take a significant amount of time and is not
indispens
i
ble to perform the user's commands, when input arrives
indispens
a
ble to perform the user's commands, when input arrives
"too fast", Emacs skips redisplay. More specifically, if the next
"too fast", Emacs skips redisplay. More specifically, if the next
command has already been input when we finish the previous command,
command has already been input when we finish the previous command,
we skip the intermediate redisplay.
we skip the intermediate redisplay.
...
...
test/automated/let-alist.el
View file @
b3946c9b
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
'
(
nil
1
1
2
nil
)))))
'
(
nil
1
1
2
nil
)))))
(
ert-deftest
let-alist-remove-dot
()
(
ert-deftest
let-alist-remove-dot
()
"Remove firt dot from symbol."
"Remove fir
s
t dot from symbol."
(
should
(
equal
(
let-alist--remove-dot
'hi
)
'hi
))
(
should
(
equal
(
let-alist--remove-dot
'hi
)
'hi
))
(
should
(
equal
(
let-alist--remove-dot
'.hi
)
'hi
))
(
should
(
equal
(
let-alist--remove-dot
'.hi
)
'hi
))
(
should
(
equal
(
let-alist--remove-dot
'..hi
)
'.hi
)))
(
should
(
equal
(
let-alist--remove-dot
'..hi
)
'.hi
)))
...
...
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