aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2002-04-01 13:46:09 +0000
committerPavel Janík2002-04-01 13:46:09 +0000
commit513f293e7f163447abe5b357024dff8e89e699a3 (patch)
treea80b5290d5cacff220ce68dbbb7cd56b788f1326
parentb0981e1402780f76342bd893d74277b90e246b64 (diff)
downloademacs-513f293e7f163447abe5b357024dff8e89e699a3.tar.gz
emacs-513f293e7f163447abe5b357024dff8e89e699a3.zip
Rename x_autoselect_window_p to autoselect_window_p.
-rw-r--r--src/msdos.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/msdos.c b/src/msdos.c
index 773346fff4f..98f7079e420 100644
--- a/src/msdos.c
+++ b/src/msdos.c
@@ -1195,9 +1195,9 @@ static int help_echo_pos;
1195 1195
1196/* Non-zero means automatically select any window when the mouse 1196/* Non-zero means automatically select any window when the mouse
1197 cursor moves into it. */ 1197 cursor moves into it. */
1198int x_autoselect_window_p; 1198int autoselect_window_p;
1199 1199
1200/* Last window where we saw the mouse. Used by x-autoselect-window. */ 1200/* Last window where we saw the mouse. Used by autoselect-window. */
1201static Lisp_Object last_mouse_window; 1201static Lisp_Object last_mouse_window;
1202 1202
1203static int mouse_preempted = 0; /* non-zero when XMenu gobbles mouse events */ 1203static int mouse_preempted = 0; /* non-zero when XMenu gobbles mouse events */
@@ -5366,9 +5366,9 @@ syms_of_msdos ()
5366This variable is used only by MSDOS terminals. */); 5366This variable is used only by MSDOS terminals. */);
5367 Vdos_unsupported_char_glyph = '\177'; 5367 Vdos_unsupported_char_glyph = '\177';
5368 5368
5369 DEFVAR_BOOL ("x-autoselect-window", &x_autoselect_window_p, 5369 DEFVAR_BOOL ("autoselect-window", &autoselect_window_p,
5370 doc: /* *Non-nil means autoselect window with mouse pointer. */); 5370 doc: /* *Non-nil means autoselect window with mouse pointer. */);
5371 x_autoselect_window_p = 0; 5371 autoselect_window_p = 0;
5372#endif 5372#endif
5373#ifndef subprocesses 5373#ifndef subprocesses
5374 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes, 5374 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,