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
ed8a25df
Commit
ed8a25df
authored
Dec 09, 2007
by
Glenn Morris
Browse files
(top-level): Use dolist rather than mapc in make-variable-frame-local call.
parent
a5ded4c9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
admin/FOR-RELEASE
admin/FOR-RELEASE
+4
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emulation/viper-init.el
lisp/emulation/viper-init.el
+4
-6
No files found.
admin/FOR-RELEASE
View file @
ed8a25df
...
...
@@ -107,6 +107,10 @@ http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg02052.html
** Fix or document the shortcoming of easymenu and :suffix.
http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01857.html
** Fix problem with mode-name in SGML mode.
If mode-name stays non-string, add NEWS entry and doc fix.
http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg02048.html
* DOCUMENTATION
** Check the Emacs Tutorial.
...
...
lisp/ChangeLog
View file @
ed8a25df
2007-12-09 Glenn Morris <rgm@gnu.org>
* emulation/viper-init.el (top-level): Use dolist rather than mapc
in make-variable-frame-local call.
2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
* mail/hashcash.el (declare-function):
...
...
lisp/emulation/viper-init.el
View file @
ed8a25df
...
...
@@ -445,12 +445,10 @@ delete the text being replaced, as in standard Vi."
(
defvar
viper-vi-state-cursor-color
nil
)
(
if
(
fboundp
'make-variable-frame-local
)
(
mapc
'make-variable-frame-local
'
(
viper-replace-overlay-cursor-color
viper-insert-state-cursor-color
viper-emacs-state-cursor-color
viper-vi-state-cursor-color
)))
(
dolist
(
v
'
(
viper-replace-overlay-cursor-color
viper-insert-state-cursor-color
viper-emacs-state-cursor-color
viper-vi-state-cursor-color
))
(
make-variable-frame-local
v
)))
(
viper-deflocalvar
viper-replace-overlay
nil
""
)
(
put
'viper-replace-overlay
'permanent-local
t
)
...
...
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