Mercurial > emacs
changeset 108305:8bf1951b8dc0
Fix bug #6126.
w32fns.c: Include w32.h.
(Fw32_shell_execute): Decode the error message before passing it to `error'.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 07 May 2010 20:14:26 +0300 (2010-05-07) |
parents | 8b307cedcd04 (diff) 36d25edeedb5 (current diff) |
children | 8ceadb47c51e |
files | |
diffstat | 4 files changed, 8 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/etc/NEWS Fri May 07 20:08:31 2010 +0300 +++ b/etc/NEWS Fri May 07 20:14:26 2010 +0300 @@ -47,10 +47,6 @@ +++ ** Emacs now supports display and editing of bidirectional text. -Warning: This is still very much experimental! The existing support -is minimal, and when it's turned on (see below), many features are -likely to give unexpected results, or break, or even crash! Use at -your own risk! See the node "Bidirectional Editing" in the Emacs Manual for some initial documentation. @@ -69,6 +65,10 @@ bidirectionality" class implementation of the Unicode Bidirectional Algorithm. +Note that some advanced display features, such as overlay strings and +`display' text properties, do not yet work correctly when +bidirectional text is reordered for display. + ** GTK scroll-bars are now placed on the right by default. Use `set-scroll-bar-mode' to change this.
--- a/lisp/ChangeLog Fri May 07 20:08:31 2010 +0300 +++ b/lisp/ChangeLog Fri May 07 20:14:26 2010 +0300 @@ -4,6 +4,9 @@ 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca> + * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files. + * files.el (auto-mode-alist): Remove redundant entries. + * files.el (auto-save-mode): Move to simple.el to fix bootstrap. * simple.el (auto-save-mode): Move from files.el. * minibuffer.el (completion--common-suffix): Fix copy&paste error.
--- a/lisp/files.el Fri May 07 20:08:31 2010 +0300 +++ b/lisp/files.el Fri May 07 20:14:26 2010 +0300 @@ -2260,7 +2260,6 @@ ;; /tmp/Re.... or Message ("\\`/tmp/Re" . text-mode) ("/Message[0-9]*\\'" . text-mode) - ("\\.zone\\'" . zone-mode) ;; some news reader is reported to use this ("\\`/tmp/fol/" . text-mode) ("\\.oak\\'" . scheme-mode) @@ -2294,7 +2293,6 @@ ("#\\*mail\\*" . mail-mode) ("\\.g\\'" . antlr-mode) ("\\.ses\\'" . ses-mode) - ("\\.\\(soa\\|zone\\)\\'" . dns-mode) ("\\.docbook\\'" . sgml-mode) ("\\.com\\'" . dcl-mode) ("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode)
--- a/lisp/textmodes/dns-mode.el Fri May 07 20:08:31 2010 +0300 +++ b/lisp/textmodes/dns-mode.el Fri May 07 20:14:26 2010 +0300 @@ -151,6 +151,7 @@ (easy-menu-add dns-mode-menu dns-mode-map)) ;;;###autoload (defalias 'zone-mode 'dns-mode) +;;;###autoload (add-to-list 'auto-mode-alist (purecopy '("\\.zone\\'" . zone-mode))) ;; Tools.