aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-12-19 20:59:46 +0000
committerKarl Heuer1995-12-19 20:59:46 +0000
commitc9c65c869e16a5daa54eb637e6cc6699b89f2f5b (patch)
treea151cd9113c5b61a2e5831b95a62d84f9ea2ff6b
parent382cafff99c5655c9598d3fc44455aca81c00918 (diff)
downloademacs-c9c65c869e16a5daa54eb637e6cc6699b89f2f5b.tar.gz
emacs-c9c65c869e16a5daa54eb637e6cc6699b89f2f5b.zip
(syms_of_dosfns): delete the `dos-menubar-clock' and
`dos-timer-hooks' variables (the usual modeline time display now works and `display-time-hook' can be used under DOS).
-rw-r--r--src/dosfns.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/dosfns.c b/src/dosfns.c
index e37ec00af70..ec57cab84d8 100644
--- a/src/dosfns.c
+++ b/src/dosfns.c
@@ -312,8 +312,6 @@ int dos_keypad_mode;
312 312
313Lisp_Object Vdos_version; 313Lisp_Object Vdos_version;
314Lisp_Object Vdos_display_scancodes; 314Lisp_Object Vdos_display_scancodes;
315Lisp_Object Vdos_menubar_clock;
316Lisp_Object Vdos_timer_hooks;
317 315
318void 316void
319init_dosfns () 317init_dosfns ()
@@ -417,15 +415,6 @@ corner of the display (typically at the end of the mode line).\n\
417The output format is: scan code:char code*modifiers."); 415The output format is: scan code:char code*modifiers.");
418 Vdos_display_scancodes = Qnil; 416 Vdos_display_scancodes = Qnil;
419 417
420 DEFVAR_LISP ("dos-menubar-clock", &Vdos_menubar_clock,
421 "*When non-nil, the current time is displayed in the upper right\n\
422corner of the screen (typically at the end of the menu bar).");
423 Vdos_menubar_clock = Qt;
424
425 DEFVAR_LISP ("dos-timer-hooks", &Vdos_timer_hooks,
426 "List of hooks which are run every second.");
427 Vdos_timer_hooks = Qnil;
428
429 DEFVAR_INT ("dos-hyper-key", &dos_hyper_key, 418 DEFVAR_INT ("dos-hyper-key", &dos_hyper_key,
430 "*If set to 1, use right ALT key as hyper key.\n\ 419 "*If set to 1, use right ALT key as hyper key.\n\
431If set to 2, use right CTRL key as hyper key."); 420If set to 2, use right CTRL key as hyper key.");