diff options
| author | Richard M. Stallman | 2005-08-09 12:11:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-08-09 12:11:00 +0000 |
| commit | 61298e176c1a1e27aa09c6531b54622c5aff3bbd (patch) | |
| tree | 03bda9444a042443eec2337a7d8bd136d4a14131 | |
| parent | a8f0f551007be7c04b1fe039a8b74f3a605146f3 (diff) | |
| download | emacs-61298e176c1a1e27aa09c6531b54622c5aff3bbd.tar.gz emacs-61298e176c1a1e27aa09c6531b54622c5aff3bbd.zip | |
*** empty log message ***
| -rw-r--r-- | admin/FOR-RELEASE | 19 | ||||
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 46 | ||||
| -rw-r--r-- | lisp/progmodes/vhdl-mode.el | 2 | ||||
| -rw-r--r-- | lispref/ChangeLog | 24 | ||||
| -rw-r--r-- | man/ChangeLog | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
7 files changed, 106 insertions, 1 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 19656cabdde..31bc4caf0f3 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -49,6 +49,25 @@ invalid pointer from string_free_list. | |||
| 49 | 49 | ||
| 50 | ** Fix those modes that still use compile-internal, to not use it. | 50 | ** Fix those modes that still use compile-internal, to not use it. |
| 51 | 51 | ||
| 52 | ** Fix recognition of shell's `dirs' command. | ||
| 53 | |||
| 54 | Is his change right? | ||
| 55 | |||
| 56 | Date: Wed, 29 Jun 2005 18:21:28 -0500 (CDT) | ||
| 57 | From: kevin.gal@verizon.net | ||
| 58 | |||
| 59 | When I use tcsh (which echoes command input) in a shell buffer, | ||
| 60 | entering "M-x dirs" fails because it mistakens the echoed "dirs" | ||
| 61 | string as the directory string to use as input when changing the | ||
| 62 | buffers default directory. The attached gziped patch file contains a | ||
| 63 | fix. The patch also binds the "dirs" command to "\e\C-m" in | ||
| 64 | shell-mode-map (previously unbound) to make it easy to invoke. | ||
| 65 | Finally, a test has been added to see if "shell-dirstack-query" is | ||
| 66 | non-nil. If so, it is not overwritten. | ||
| 67 | |||
| 68 | To enable the fix, the user must set comint-process-echoes to t. | ||
| 69 | |||
| 70 | |||
| 52 | ** Bug in ebrowse | 71 | ** Bug in ebrowse |
| 53 | 72 | ||
| 54 | Date: Fri, 27 May 2005 17:35:48 +0200 | 73 | Date: Fri, 27 May 2005 17:35:48 +0200 |
| @@ -2799,6 +2799,10 @@ version 5.0.2; see MH-E-NEWS for details. | |||
| 2799 | ** Calendar changes: | 2799 | ** Calendar changes: |
| 2800 | 2800 | ||
| 2801 | +++ | 2801 | +++ |
| 2802 | *** You can now use < and >, instead of C-x < and C-x >, to scroll | ||
| 2803 | the calendar left or right. (The old key bindings still work too.) | ||
| 2804 | |||
| 2805 | +++ | ||
| 2802 | *** There is a new calendar package, icalendar.el, that can be used to | 2806 | *** There is a new calendar package, icalendar.el, that can be used to |
| 2803 | convert Emacs diary entries to/from the iCalendar format. | 2807 | convert Emacs diary entries to/from the iCalendar format. |
| 2804 | 2808 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1be3c4b7c5f..bdf55d10e9f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,49 @@ | |||
| 1 | 2005-08-09 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/sql.el (sql-interactive-mode-map): Use fboundp. | ||
| 4 | (sql-read-passwd): Use read-passwd. | ||
| 5 | |||
| 6 | * progmodes/idlw-toolbar.el (idlwave-toolbar) | ||
| 7 | (idlwave-toolbar-is-possible): Add defvars. | ||
| 8 | |||
| 9 | * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track): | ||
| 10 | Avoid warnings. | ||
| 11 | |||
| 12 | * progmodes/idlw-rinfo.el (idlwave-system-variables-alist) | ||
| 13 | (idlwave-system-class-info, idlwave-executive-commands-alist): | ||
| 14 | Use defvar. | ||
| 15 | |||
| 16 | * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload. | ||
| 17 | |||
| 18 | * mail/supercite.el (sc-ask, sc-no-blank-line-or-header): | ||
| 19 | Avoid warnings. | ||
| 20 | |||
| 21 | * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version: | ||
| 22 | and content-type: headers. | ||
| 23 | |||
| 24 | * eshell/eshell.el (eshell): Avoid warnings about eshell-mode. | ||
| 25 | |||
| 26 | * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options | ||
| 27 | and rename some of them to be more self-explanatory. | ||
| 28 | |||
| 29 | * calendar/calendar.el (calendar-mode-map): Bind < and > usefully. | ||
| 30 | |||
| 31 | * startup.el (command-line-1): Implement -scriptload. | ||
| 32 | |||
| 33 | * replace.el (occur-engine): Initial *Occur* output not undoable. | ||
| 34 | |||
| 35 | * menu-bar.el (menu-bar-file-menu): Rename some menu items | ||
| 36 | and improve help strings. | ||
| 37 | |||
| 38 | * isearch.el (isearch-repeat): When changing direction, | ||
| 39 | mark search successful. | ||
| 40 | |||
| 41 | * ediff-init.el: Use (featurep 'xemacs). | ||
| 42 | |||
| 43 | * comint.el (send-invisible): Identify buffer, if not selected. | ||
| 44 | |||
| 45 | * align.el: Delete autoload for c-guess-basic-syntax. | ||
| 46 | |||
| 1 | 2005-08-09 Juanma Barranquero <lekktu@gmail.com> | 47 | 2005-08-09 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 48 | ||
| 3 | * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer): | 49 | * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer): |
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 5d517edaafc..de5f3ebabd7 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Authors: Reto Zimmermann <reto@gnu.org> | 5 | ;; Authors: Reto Zimmermann <reto@gnu.org> |
| 6 | ;; Rodney J. Whitby <software.vhdl-mode@rwhitby.net> | 6 | ;; Rodney J. Whitby <software.vhdl-mode@rwhitby.net> |
| 7 | ;; Maintainer: FSF | 7 | ;; Maintainer: FSF (Because Reto Zimmermann seems to have disappeared) |
| 8 | ;; Keywords: languages vhdl | 8 | ;; Keywords: languages vhdl |
| 9 | 9 | ||
| 10 | (defconst vhdl-version "3.32.12" | 10 | (defconst vhdl-version "3.32.12" |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 98d38b57ce0..329c8d912a6 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,27 @@ | |||
| 1 | 2005-08-09 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * tips.texi (Coding Conventions): Minor cleanup. | ||
| 4 | |||
| 5 | * modes.texi (Defining Minor Modes): Explain when init-value | ||
| 6 | can be non-nil. | ||
| 7 | |||
| 8 | * elisp.texi (Top): Update submenu for Minibuffer. | ||
| 9 | |||
| 10 | * minibuf.texi (Minibuffer Misc): Node split up. | ||
| 11 | (Minibuffer Commands, Minibuffer Windows, Minibuffer Contents) | ||
| 12 | (Recursive Mini): New nodes split out from Minibuffer Misc. | ||
| 13 | (Minibuffer Misc): Document max-mini-window-height. | ||
| 14 | |||
| 15 | * hash.texi (Defining Hash): Delete stray paren in example. | ||
| 16 | |||
| 17 | * display.texi (Echo Area Customization): Don't define | ||
| 18 | max-mini-window-height here; xref instead. | ||
| 19 | |||
| 20 | * commands.texi (Event Input Misc): Update while-no-input. | ||
| 21 | |||
| 22 | * advice.texi (Advising Functions): Explain when to use advice | ||
| 23 | and when to use a hook. | ||
| 24 | |||
| 1 | 2005-07-30 Eli Zaretskii <eliz@gnu.org> | 25 | 2005-07-30 Eli Zaretskii <eliz@gnu.org> |
| 2 | 26 | ||
| 3 | * makefile.w32-in (info): Don't run install-info. | 27 | * makefile.w32-in (info): Don't run install-info. |
diff --git a/man/ChangeLog b/man/ChangeLog index 0baae8e1187..67cd0d6233e 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-08-09 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * files.texi (Comparing Files): Clarify compare-windows. | ||
| 4 | |||
| 5 | * calendar.texi (Scroll Calendar): Document < and > in calendar. | ||
| 6 | |||
| 1 | 2005-08-09 Juri Linkov <juri@jurta.org> | 7 | 2005-08-09 Juri Linkov <juri@jurta.org> |
| 2 | 8 | ||
| 3 | * info.texi (Help-P): Replace `Prev' with `Previous'. | 9 | * info.texi (Help-P): Replace `Prev' with `Previous'. |
diff --git a/src/ChangeLog b/src/ChangeLog index 256b720eace..68614d7c8c4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-08-09 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * bytecode.c (BYTE_CODE_QUIT): Throw t to Vthrow_on_input. | ||
| 4 | |||
| 5 | * lisp.h (QUIT): Throw t to Vthrow_on_input. | ||
| 6 | |||
| 1 | 2005-08-09 Thien-Thi Nguyen <ttn@gnu.org> | 7 | 2005-08-09 Thien-Thi Nguyen <ttn@gnu.org> |
| 2 | 8 | ||
| 3 | * floatfns.c (Fexpt): Use floats for negative exponent. | 9 | * floatfns.c (Fexpt): Use floats for negative exponent. |