aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-08-09 12:11:00 +0000
committerRichard M. Stallman2005-08-09 12:11:00 +0000
commit61298e176c1a1e27aa09c6531b54622c5aff3bbd (patch)
tree03bda9444a042443eec2337a7d8bd136d4a14131
parenta8f0f551007be7c04b1fe039a8b74f3a605146f3 (diff)
downloademacs-61298e176c1a1e27aa09c6531b54622c5aff3bbd.tar.gz
emacs-61298e176c1a1e27aa09c6531b54622c5aff3bbd.zip
*** empty log message ***
-rw-r--r--admin/FOR-RELEASE19
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/ChangeLog46
-rw-r--r--lisp/progmodes/vhdl-mode.el2
-rw-r--r--lispref/ChangeLog24
-rw-r--r--man/ChangeLog6
-rw-r--r--src/ChangeLog6
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
54Is his change right?
55
56Date: Wed, 29 Jun 2005 18:21:28 -0500 (CDT)
57From: kevin.gal@verizon.net
58
59When I use tcsh (which echoes command input) in a shell buffer,
60entering "M-x dirs" fails because it mistakens the echoed "dirs"
61string as the directory string to use as input when changing the
62buffers default directory. The attached gziped patch file contains a
63fix. The patch also binds the "dirs" command to "\e\C-m" in
64shell-mode-map (previously unbound) to make it easy to invoke.
65Finally, a test has been added to see if "shell-dirstack-query" is
66non-nil. If so, it is not overwritten.
67
68To enable the fix, the user must set comint-process-echoes to t.
69
70
52** Bug in ebrowse 71** Bug in ebrowse
53 72
54Date: Fri, 27 May 2005 17:35:48 +0200 73Date: Fri, 27 May 2005 17:35:48 +0200
diff --git a/etc/NEWS b/etc/NEWS
index 0935d2066da..1952c65fab0 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
2803the 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
2803convert Emacs diary entries to/from the iCalendar format. 2807convert 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 @@
12005-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
12005-08-09 Juanma Barranquero <lekktu@gmail.com> 472005-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 @@
12005-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
12005-07-30 Eli Zaretskii <eliz@gnu.org> 252005-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 @@
12005-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
12005-08-09 Juri Linkov <juri@jurta.org> 72005-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 @@
12005-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
12005-08-09 Thien-Thi Nguyen <ttn@gnu.org> 72005-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.