aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2008-11-14 13:05:18 +0000
committerJuanma Barranquero2008-11-14 13:05:18 +0000
commit8fc29035f39226e4c9154132fa57d57559ee4c22 (patch)
tree55ff7eaaeb8f2c367823bac20576acbcee9c1284 /src
parent55fb4286284a2a49da905fdd47bdcd40ac8b6c47 (diff)
downloademacs-8fc29035f39226e4c9154132fa57d57559ee4c22.tar.gz
emacs-8fc29035f39226e4c9154132fa57d57559ee4c22.zip
* w32-fns.el (w32-shell-dos-semantics):
* calendar/diary-lib.el (diary-face-attrs): * international/mule-cmds.el (set-default-coding-systems) (prefer-coding-system): * net/tramp.el (tramp-set-completion-function): * progmodes/vhdl-mode.el (vhdl-file-header): * term/pc-win.el (msdos-show-help): Fix typos in docstrings. * emacs-lisp/authors.el (authors-fixed-entries): Fix typo in value. * files.el (enable-local-eval, not-modified, kill-buffer-ask) (kill-matching-buffers, save-buffers-kill-emacs) (save-buffers-kill-terminal): Fix typos in docstrings. (switch-to-buffer-other-window): Reflow docstring. (revert-buffer): Doc fix. (define-project-bindings): Rename arg LIST to SETTINGS. (project-find-settings-file): Use `let', not `let*'. Use `when'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/dosfns.c2
-rw-r--r--src/msdos.c4
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 @@
12008-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
12008-11-14 Eli Zaretskii <eliz@gnu.org> 72008-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
50DEFUN ("int86", Fint86, Sint86, 2, 2, 0, 50DEFUN ("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.
52Return the updated REGISTER vector. 52Return the updated REGISTER vector.
53 53
54INTERRUPT should be an integer in the range 0 to 255. 54INTERRUPT 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
4281DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names, 4281DEFUN ("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.
5250This variable is used only by MSDOS terminals. */); 5250This 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