changeset 64849:a2d841662b3d

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Aug 2005 12:11:00 +0000
parents 51a9d1289e86
children a471e69ed043
files admin/FOR-RELEASE etc/NEWS lisp/ChangeLog lisp/progmodes/vhdl-mode.el lispref/ChangeLog man/ChangeLog src/ChangeLog
diffstat 7 files changed, 106 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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.
 
--- 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  <rms@gnu.org>
+
+	* 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  <lekktu@gmail.com>
 
 	* textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
--- 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 <reto@gnu.org>
 ;;              Rodney J. Whitby <software.vhdl-mode@rwhitby.net>
-;; Maintainer:  FSF
+;; Maintainer:  FSF  (Because Reto Zimmermann seems to have disappeared)
 ;; Keywords:    languages vhdl
 
 (defconst vhdl-version "3.32.12"
--- 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  <rms@gnu.org>
+
+	* 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  <eliz@gnu.org>
 
 	* makefile.w32-in (info): Don't run install-info.
--- 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  <rms@gnu.org>
+
+	* files.texi (Comparing Files): Clarify compare-windows.
+
+	* calendar.texi (Scroll Calendar): Document < and > in calendar.
+
 2005-08-09  Juri Linkov  <juri@jurta.org>
 
 	* info.texi (Help-P): Replace `Prev' with `Previous'.
--- 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  <rms@gnu.org>
+
+	* 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  <ttn@gnu.org>
 
 	* floatfns.c (Fexpt): Use floats for negative exponent.