1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

*** empty log message ***

This commit is contained in:
Michael I. Bushnell 1991-11-26 05:14:58 +00:00
parent 3ffbe76bac
commit 809ca691c2
2 changed files with 3 additions and 2 deletions

View File

@ -148,7 +148,7 @@ directory name of the directory where the `.emacs' file was looked for.")
(setq version-control 'never))))
;; Choose a good default value for split-window-keep-point.
(setq split-window-keep-point (> baud-rate 2400))
(setq split-window-keep-point (> (baud-rate) 2400))
;; Read window system's init file if using a window system.
(if (and window-system (not noninteractive))

View File

@ -1424,6 +1424,7 @@ x_get_arg (alist, param, screen_name, attribute, type)
enum resource_types type;
{
register Lisp_Object tem;
int i;
tem = Fassq (param, alist);
if (EQ (tem, Qnil))
@ -4417,9 +4418,9 @@ Values can be the symbols Always, WhenMapped, or NotUseful.");
defsubr (&Sx_defined_color);
#if 0
defsubr (&Sx_track_pointer);
#endif
defsubr (&Sx_grab_pointer);
defsubr (&Sx_ungrab_pointer);
#endif
#else
defsubr (&Sx_get_default);
defsubr (&Sx_store_cut_buffer);