# HG changeset patch # User Richard M. Stallman # Date 1123589460 0 # Node ID a2d841662b3d238ef6709fc05f1ad554c9d3ea63 # Parent 51a9d1289e862b6832962a2f235c8ecc0e159c1e *** empty log message *** diff -r 51a9d1289e86 -r a2d841662b3d admin/FOR-RELEASE --- a/admin/FOR-RELEASE Tue Aug 09 12:10:40 2005 +0000 +++ b/admin/FOR-RELEASE Tue Aug 09 12:11:00 2005 +0000 @@ -49,6 +49,25 @@ ** 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 -r 51a9d1289e86 -r a2d841662b3d etc/NEWS --- a/etc/NEWS Tue Aug 09 12:10:40 2005 +0000 +++ b/etc/NEWS Tue Aug 09 12:11:00 2005 +0000 @@ -2799,6 +2799,10 @@ ** 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 -r 51a9d1289e86 -r a2d841662b3d lisp/ChangeLog --- a/lisp/ChangeLog Tue Aug 09 12:10:40 2005 +0000 +++ b/lisp/ChangeLog Tue Aug 09 12:11:00 2005 +0000 @@ -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 -r 51a9d1289e86 -r a2d841662b3d lisp/progmodes/vhdl-mode.el --- a/lisp/progmodes/vhdl-mode.el Tue Aug 09 12:10:40 2005 +0000 +++ b/lisp/progmodes/vhdl-mode.el Tue Aug 09 12:11:00 2005 +0000 @@ -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 -r 51a9d1289e86 -r a2d841662b3d lispref/ChangeLog --- a/lispref/ChangeLog Tue Aug 09 12:10:40 2005 +0000 +++ b/lispref/ChangeLog Tue Aug 09 12:11:00 2005 +0000 @@ -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 -r 51a9d1289e86 -r a2d841662b3d man/ChangeLog --- a/man/ChangeLog Tue Aug 09 12:10:40 2005 +0000 +++ b/man/ChangeLog Tue Aug 09 12:11:00 2005 +0000 @@ -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 -r 51a9d1289e86 -r a2d841662b3d src/ChangeLog --- a/src/ChangeLog Tue Aug 09 12:10:40 2005 +0000 +++ b/src/ChangeLog Tue Aug 09 12:11:00 2005 +0000 @@ -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.