aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog47
2 files changed, 43 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 2d2623f25a1..9e7465c1e7b 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1533,7 +1533,7 @@ separate manual.
1533 1533
1534+++ 1534+++
1535** savehist saves minibuffer histories between sessions. 1535** savehist saves minibuffer histories between sessions.
1536To use this feature, put (savehist-load) in your `.emacs' file. 1536To use this feature, turn on savehist-mode in your `.emacs' file.
1537 1537
1538+++ 1538+++
1539** Filesets are collections of files. You can define a fileset in 1539** Filesets are collections of files. You can define a fileset in
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ccea8fc6f89..a15ee5c6d7f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,12 +1,49 @@
12005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * progmodes/scheme.el (scheme-mode-variables): Use the default
4 comment-indent-function.
5
6 * faces.el (face-attribute): Handle the case where a face inherits from
7 a non-existent face.
8
9 * simple.el (eval-expression-print-format): Use lisp-readable syntax
10 for octal and hexa output, and merge the char into the paren.
11 (kill-new): Use push.
12 (copy-to-buffer): Use with-current-buffer.
13 (completion-setup-function): Move code in loop to remove redundancy.
14 (minibuffer-local-must-match-map): Don't add bindings that duplicate
15 those inherited from minibuffer-local-completion-map.
16
17 * savehist.el (savehist-mode) <defcustom>:
18 Use custom-set-minor-mode if available.
19 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
20 and emit a message if applicable.
21
222005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
23
24 * savehist.el: Sync up to version 19.
25 (savehist-mode): New minor mode.
26 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
27 (savehist-length): Remove (use history-length instead).
28 (savehist-file-modes): Rename from savehist-modes.
29 (savehist-save-hook, savehist-loaded): New vars.
30 (savehist-load): Use savehist-mode. Try to smooth up transition from
31 old format to new format.
32 (savehist-install): Allow savehist-autosave-interval to be nil.
33 (savehist-save): Run the new hook. Be more careful to only trim the
34 history variables.
35 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
36 (savehist-printable): Print into a buffer rather than char-by-char.
37
12005-11-01 John Wiegley <johnw@newartisans.com> 382005-11-01 John Wiegley <johnw@newartisans.com>
2 39
3 * iswitchb.el (iswitchb-define-mode-map): Re-enabled the 40 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
4 toggle-ignore keybinding (C-a). The author said it had been 41 toggle-ignore keybinding (C-a). The author said it had been
5 disabled much earlier due to a possible incompatibility, but after 42 disabled much earlier due to a possible incompatibility, but after
6 many months of usage I have encountered no problems (and it is a 43 many months of usage I have encountered no problems (and it is a
7 rather useful option, especially for switching to " *temp*"). 44 rather useful option, especially for switching to " *temp*").
8 45
9 * net/eudcb-mab.el (eudc-mab-query-internal): Added backend 46 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
10 support for OS/X's AddressBook, by calling out to the open source 47 support for OS/X's AddressBook, by calling out to the open source
11 program "contacts" (installable through Fink). 48 program "contacts" (installable through Fink).
12 49
@@ -14,7 +51,7 @@
14 `eudc-multiple-match-handling-method' is set to `all', delete the 51 `eudc-multiple-match-handling-method' is set to `all', delete the
15 query string before inserting the query result. 52 query string before inserting the query result.
16 53
17 * eshell/em-ls.el (eshell-do-ls): Added no-op support for --dired 54 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
18 flag, to prevent Eshell from using the system ls when 55 flag, to prevent Eshell from using the system ls when
19 `eshell-ls-insert-directory' is in used. 56 `eshell-ls-insert-directory' is in used.
20 (eshell-ls-insert-directory): Disable font-lock in directory 57 (eshell-ls-insert-directory): Disable font-lock in directory
@@ -74,8 +111,8 @@
74 111
75 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring 112 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
76 starting at beginning of line. Fontification is messed up when 113 starting at beginning of line. Fontification is messed up when
77 `open-paren-in-column-0-is-defun-start' set to t. Reported 114 `open-paren-in-column-0-is-defun-start' set to t.
78 by John Paul Wallington <jpw@pobox.com>. 115 Reported by John Paul Wallington <jpw@pobox.com>.
79 116
802005-10-30 Luc Teirlinck <teirllm@auburn.edu> 1172005-10-30 Luc Teirlinck <teirllm@auburn.edu>
81 118