diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/dosfns.c | 2 | ||||
| -rw-r--r-- | src/msdos.c | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 466708fa2f9..ef38bbf5537 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-11-14 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * msdos.c (Fmsdos_long_file_names): | ||
| 4 | (syms_of_msdos) <dos-unsupported-char-glyph>: | ||
| 5 | * dosfns.c (Fint86): Fix typos in docstrings. | ||
| 6 | |||
| 1 | 2008-11-14 Eli Zaretskii <eliz@gnu.org> | 7 | 2008-11-14 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace. | 9 | * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace. |
diff --git a/src/dosfns.c b/src/dosfns.c index 240f19c3380..419a4ef44ee 100644 --- a/src/dosfns.c +++ b/src/dosfns.c | |||
| @@ -48,7 +48,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 48 | #endif | 48 | #endif |
| 49 | 49 | ||
| 50 | DEFUN ("int86", Fint86, Sint86, 2, 2, 0, | 50 | DEFUN ("int86", Fint86, Sint86, 2, 2, 0, |
| 51 | doc: /* Call specific MSDOS interrupt number INTERRUPT with REGISTERS. | 51 | doc: /* Call specific MS-DOS interrupt number INTERRUPT with REGISTERS. |
| 52 | Return the updated REGISTER vector. | 52 | Return the updated REGISTER vector. |
| 53 | 53 | ||
| 54 | INTERRUPT should be an integer in the range 0 to 255. | 54 | INTERRUPT should be an integer in the range 0 to 255. |
diff --git a/src/msdos.c b/src/msdos.c index c8a8b5f1b88..86b765fb68b 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -4280,7 +4280,7 @@ int _rename(const char *old, const char *new) | |||
| 4280 | 4280 | ||
| 4281 | DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names, | 4281 | DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names, |
| 4282 | 0, 0, 0, | 4282 | 0, 0, 0, |
| 4283 | doc: /* Return non-nil if long file names are supported on MSDOS. */) | 4283 | doc: /* Return non-nil if long file names are supported on MS-DOS. */) |
| 4284 | () | 4284 | () |
| 4285 | { | 4285 | { |
| 4286 | return (_USE_LFN ? Qt : Qnil); | 4286 | return (_USE_LFN ? Qt : Qnil); |
| @@ -5247,7 +5247,7 @@ syms_of_msdos () | |||
| 5247 | 5247 | ||
| 5248 | DEFVAR_LISP ("dos-unsupported-char-glyph", &Vdos_unsupported_char_glyph, | 5248 | DEFVAR_LISP ("dos-unsupported-char-glyph", &Vdos_unsupported_char_glyph, |
| 5249 | doc: /* *Glyph to display instead of chars not supported by current codepage. | 5249 | doc: /* *Glyph to display instead of chars not supported by current codepage. |
| 5250 | This variable is used only by MSDOS terminals. */); | 5250 | This variable is used only by MS-DOS terminals. */); |
| 5251 | Vdos_unsupported_char_glyph = make_number ('\177'); | 5251 | Vdos_unsupported_char_glyph = make_number ('\177'); |
| 5252 | 5252 | ||
| 5253 | #endif | 5253 | #endif |