diff options
| author | Eli Zaretskii | 2001-12-09 19:46:55 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-12-09 19:46:55 +0000 |
| commit | d20fc48aea27b82f9a82618bbea5c81fb3085da4 (patch) | |
| tree | 2ef074ed0c60623a7299205a30e32693560cf4ad /src | |
| parent | 573837280fa1140c46a868434c7d9c118afc19fc (diff) | |
| download | emacs-d20fc48aea27b82f9a82618bbea5c81fb3085da4.tar.gz emacs-d20fc48aea27b82f9a82618bbea5c81fb3085da4.zip | |
(dos-display-scancodes, dos-decimal): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/dosfns.c | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 23b1c6f4dff..cc32edeadd6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2001-12-09 Eli Zaretskii <eliz@is.elta.co.il> | 1 | 2001-12-09 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 2 | ||
| 3 | * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix. | ||
| 4 | |||
| 3 | * s/hpux10.h (srand48): Don't undefine. | 5 | * s/hpux10.h (srand48): Don't undefine. |
| 4 | 6 | ||
| 5 | 2001-12-09 Jason Rumney <jasonr@gnu.org> | 7 | 2001-12-09 Jason Rumney <jasonr@gnu.org> |
diff --git a/src/dosfns.c b/src/dosfns.c index 783b1214437..d86c91a70f2 100644 --- a/src/dosfns.c +++ b/src/dosfns.c | |||
| @@ -600,7 +600,8 @@ Implicitly modified when the TZ variable is changed."); | |||
| 600 | #endif | 600 | #endif |
| 601 | 601 | ||
| 602 | DEFVAR_LISP ("dos-display-scancodes", &Vdos_display_scancodes, | 602 | DEFVAR_LISP ("dos-display-scancodes", &Vdos_display_scancodes, |
| 603 | "*When non-nil, the keyboard scan-codes are displayed at the bottom right\n\ | 603 | "*Controls whether DOS raw keyboard events are displayed as you type.\n\ |
| 604 | When non-nil, the keyboard scan-codes are displayed at the bottom right\n\ | ||
| 604 | corner of the display (typically at the end of the mode line).\n\ | 605 | corner of the display (typically at the end of the mode line).\n\ |
| 605 | The output format is: scan code:char code*modifiers."); | 606 | The output format is: scan code:char code*modifiers."); |
| 606 | Vdos_display_scancodes = Qnil; | 607 | Vdos_display_scancodes = Qnil; |
| @@ -645,7 +646,8 @@ Use msdos-set-keyboard to select another keyboard layout."); | |||
| 645 | dos_keyboard_layout = 1; /* US */ | 646 | dos_keyboard_layout = 1; /* US */ |
| 646 | 647 | ||
| 647 | DEFVAR_INT ("dos-decimal-point", &dos_decimal_point, | 648 | DEFVAR_INT ("dos-decimal-point", &dos_decimal_point, |
| 648 | "If non-zero, it contains the character to be returned when the\n\ | 649 | "The character to produce when kp-decimal key is pressed.\n\ |
| 650 | If non-zero, this variable contains the character to be returned when the\n\ | ||
| 649 | decimal point key in the numeric keypad is pressed when Num Lock is on.\n\ | 651 | decimal point key in the numeric keypad is pressed when Num Lock is on.\n\ |
| 650 | If zero, the decimal point key returns the country code specific value."); | 652 | If zero, the decimal point key returns the country code specific value."); |
| 651 | dos_decimal_point = 0; | 653 | dos_decimal_point = 0; |