aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/startup.el2
-rw-r--r--src/xfns.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index fea0676068b..16386caffba 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -148,7 +148,7 @@ directory name of the directory where the `.emacs' file was looked for.")
148 (setq version-control 'never)))) 148 (setq version-control 'never))))
149 149
150 ;; Choose a good default value for split-window-keep-point. 150 ;; Choose a good default value for split-window-keep-point.
151 (setq split-window-keep-point (> baud-rate 2400)) 151 (setq split-window-keep-point (> (baud-rate) 2400))
152 152
153 ;; Read window system's init file if using a window system. 153 ;; Read window system's init file if using a window system.
154 (if (and window-system (not noninteractive)) 154 (if (and window-system (not noninteractive))
diff --git a/src/xfns.c b/src/xfns.c
index 1cecae8f2b2..4af2c899390 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1424,6 +1424,7 @@ x_get_arg (alist, param, screen_name, attribute, type)
1424 enum resource_types type; 1424 enum resource_types type;
1425{ 1425{
1426 register Lisp_Object tem; 1426 register Lisp_Object tem;
1427 int i;
1427 1428
1428 tem = Fassq (param, alist); 1429 tem = Fassq (param, alist);
1429 if (EQ (tem, Qnil)) 1430 if (EQ (tem, Qnil))
@@ -4417,9 +4418,9 @@ Values can be the symbols Always, WhenMapped, or NotUseful.");
4417 defsubr (&Sx_defined_color); 4418 defsubr (&Sx_defined_color);
4418#if 0 4419#if 0
4419 defsubr (&Sx_track_pointer); 4420 defsubr (&Sx_track_pointer);
4420#endif
4421 defsubr (&Sx_grab_pointer); 4421 defsubr (&Sx_grab_pointer);
4422 defsubr (&Sx_ungrab_pointer); 4422 defsubr (&Sx_ungrab_pointer);
4423#endif
4423#else 4424#else
4424 defsubr (&Sx_get_default); 4425 defsubr (&Sx_get_default);
4425 defsubr (&Sx_store_cut_buffer); 4426 defsubr (&Sx_store_cut_buffer);