1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-09 07:40:39 -08:00

Fix references to long obsoleted functions/aliases

* doc/lispintro/emacs-list-intro.texi (Miscellaneous):
* doc/misc/cl.texi (Conditionals):
* doc/misc/speedbar.texi (Major Display Modes): Use string-to-number,
not string-to-int.
* lisp/emulation/viper.el (viper-go-away): Use major-mode, not
default-major-mode.
* lisp/textmodes/reftex-toc.el (reftex-toc-visit-location): show-window
here is not a function call, but shorten the binding names anyways.
Also, use pop-to-buffer-same-window instead of switch-to-buffer cf
Bug#22244.
* lisp/textmodes/sgml-mode.el (html-tag-alist): Use read-string, not
read-input.
This commit is contained in:
Mark Oteiza 2016-11-04 12:45:51 -04:00
parent abe594c099
commit 2c6920a365
6 changed files with 12 additions and 12 deletions

View file

@ -17647,7 +17647,7 @@ Set the shape and color of the mouse cursor:
(setq mpointer "132")) ; top_left_arrow
@end group
@group
(setq x-pointer-shape (string-to-int mpointer))
(setq x-pointer-shape (string-to-number mpointer))
(set-mouse-color "white"))
@end group
@end smallexample