From 61298e176c1a1e27aa09c6531b54622c5aff3bbd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 9 Aug 2005 12:11:00 +0000 Subject: [PATCH] *** empty log message *** --- admin/FOR-RELEASE | 19 +++++++++++++++ etc/NEWS | 4 ++++ lisp/ChangeLog | 46 +++++++++++++++++++++++++++++++++++++ lisp/progmodes/vhdl-mode.el | 2 +- lispref/ChangeLog | 24 +++++++++++++++++++ man/ChangeLog | 6 +++++ src/ChangeLog | 6 +++++ 7 files changed, 106 insertions(+), 1 deletion(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 19656cabdd..31bc4caf0f 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -49,6 +49,25 @@ invalid pointer from string_free_list. ** Fix those modes that still use compile-internal, to not use it. +** Fix recognition of shell's `dirs' command. + +Is his change right? + +Date: Wed, 29 Jun 2005 18:21:28 -0500 (CDT) +From: kevin.gal@verizon.net + +When I use tcsh (which echoes command input) in a shell buffer, +entering "M-x dirs" fails because it mistakens the echoed "dirs" +string as the directory string to use as input when changing the +buffers default directory. The attached gziped patch file contains a +fix. The patch also binds the "dirs" command to "\e\C-m" in +shell-mode-map (previously unbound) to make it easy to invoke. +Finally, a test has been added to see if "shell-dirstack-query" is +non-nil. If so, it is not overwritten. + +To enable the fix, the user must set comint-process-echoes to t. + + ** Bug in ebrowse Date: Fri, 27 May 2005 17:35:48 +0200 diff --git a/etc/NEWS b/etc/NEWS index 0935d2066d..1952c65fab 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -2798,6 +2798,10 @@ version 5.0.2; see MH-E-NEWS for details. ** Calendar changes: ++++ +*** You can now use < and >, instead of C-x < and C-x >, to scroll +the calendar left or right. (The old key bindings still work too.) + +++ *** There is a new calendar package, icalendar.el, that can be used to convert Emacs diary entries to/from the iCalendar format. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1be3c4b7c5..bdf55d10e9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,49 @@ +2005-08-09 Richard M. Stallman + + * progmodes/sql.el (sql-interactive-mode-map): Use fboundp. + (sql-read-passwd): Use read-passwd. + + * progmodes/idlw-toolbar.el (idlwave-toolbar) + (idlwave-toolbar-is-possible): Add defvars. + + * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track): + Avoid warnings. + + * progmodes/idlw-rinfo.el (idlwave-system-variables-alist) + (idlwave-system-class-info, idlwave-executive-commands-alist): + Use defvar. + + * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload. + + * mail/supercite.el (sc-ask, sc-no-blank-line-or-header): + Avoid warnings. + + * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version: + and content-type: headers. + + * eshell/eshell.el (eshell): Avoid warnings about eshell-mode. + + * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options + and rename some of them to be more self-explanatory. + + * calendar/calendar.el (calendar-mode-map): Bind < and > usefully. + + * startup.el (command-line-1): Implement -scriptload. + + * replace.el (occur-engine): Initial *Occur* output not undoable. + + * menu-bar.el (menu-bar-file-menu): Rename some menu items + and improve help strings. + + * isearch.el (isearch-repeat): When changing direction, + mark search successful. + + * ediff-init.el: Use (featurep 'xemacs). + + * comint.el (send-invisible): Identify buffer, if not selected. + + * align.el: Delete autoload for c-guess-basic-syntax. + 2005-08-09 Juanma Barranquero * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer): diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 5d517edaaf..de5f3ebabd 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -4,7 +4,7 @@ ;; Authors: Reto Zimmermann ;; Rodney J. Whitby -;; Maintainer: FSF +;; Maintainer: FSF (Because Reto Zimmermann seems to have disappeared) ;; Keywords: languages vhdl (defconst vhdl-version "3.32.12" diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 98d38b57ce..329c8d912a 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,27 @@ +2005-08-09 Richard M. Stallman + + * tips.texi (Coding Conventions): Minor cleanup. + + * modes.texi (Defining Minor Modes): Explain when init-value + can be non-nil. + + * elisp.texi (Top): Update submenu for Minibuffer. + + * minibuf.texi (Minibuffer Misc): Node split up. + (Minibuffer Commands, Minibuffer Windows, Minibuffer Contents) + (Recursive Mini): New nodes split out from Minibuffer Misc. + (Minibuffer Misc): Document max-mini-window-height. + + * hash.texi (Defining Hash): Delete stray paren in example. + + * display.texi (Echo Area Customization): Don't define + max-mini-window-height here; xref instead. + + * commands.texi (Event Input Misc): Update while-no-input. + + * advice.texi (Advising Functions): Explain when to use advice + and when to use a hook. + 2005-07-30 Eli Zaretskii * makefile.w32-in (info): Don't run install-info. diff --git a/man/ChangeLog b/man/ChangeLog index 0baae8e118..67cd0d6233 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,9 @@ +2005-08-09 Richard M. Stallman + + * files.texi (Comparing Files): Clarify compare-windows. + + * calendar.texi (Scroll Calendar): Document < and > in calendar. + 2005-08-09 Juri Linkov * info.texi (Help-P): Replace `Prev' with `Previous'. diff --git a/src/ChangeLog b/src/ChangeLog index 256b720eac..68614d7c8c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2005-08-09 Richard M. Stallman + + * bytecode.c (BYTE_CODE_QUIT): Throw t to Vthrow_on_input. + + * lisp.h (QUIT): Throw t to Vthrow_on_input. + 2005-08-09 Thien-Thi Nguyen * floatfns.c (Fexpt): Use floats for negative exponent. -- 2.20.1