aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-04-04 22:02:35 +0000
committerStefan Monnier2003-04-04 22:02:35 +0000
commitda2c1d6bd1c362b15da4577478ffcdf829107146 (patch)
tree80c7d452bf4f0baec401748fd21b8fb1efcfc67d
parent0aa1b02e818a3f9a2d8f519455621e4e7a3aba9e (diff)
downloademacs-da2c1d6bd1c362b15da4577478ffcdf829107146.tar.gz
emacs-da2c1d6bd1c362b15da4577478ffcdf829107146.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog27
1 files changed, 17 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e93cabad3d2..d850e401c65 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12003-04-04 Stefan Monnier <monnier@cs.yale.edu>
2
3 * textmodes/refill.el (refill-fill-paragraph-at): Undo last fix.
4 (refill-fill-paragraph-at): Don't skip prefix since markers work right.
5
6 * textmodes/fill.el (fill-delete-newlines): Remove trailing whitespace.
7 (fill-paragraph): Don't skip prefix now that markers work right.
8
12003-04-04 John Paul Wallington <jpw@gnu.org> 92003-04-04 John Paul Wallington <jpw@gnu.org>
2 10
3 * ibuffer.el (ibuffer-insert-filter-group): `help-echo' text 11 * ibuffer.el (ibuffer-insert-filter-group): `help-echo' text
@@ -12,21 +20,21 @@
12 New helper functions. 20 New helper functions.
13 (snarf-tag-function): Doc string is changed. Explained about new 21 (snarf-tag-function): Doc string is changed. Explained about new
14 optional argument, `use-explicit'. 22 optional argument, `use-explicit'.
15 (etags-snarf-tag): Added one optional argument `use-explicit'. 23 (etags-snarf-tag): Add one optional argument `use-explicit'.
16 (file-of-tag-function): Doc string is changed. Explained about new 24 (file-of-tag-function): Doc string is changed. Explained about new
17 optional argument, `relative'. 25 optional argument, `relative'.
18 (file-of-tag): Doc string is changed. Explained about new optional 26 (file-of-tag): Doc string is changed. Explained about new optional
19 argument, `relative'. Pass `relative' to `file-of-tag-function'. 27 argument, `relative'. Pass `relative' to `file-of-tag-function'.
20 (etags-file-of-tag): Added new argument `relative`. 28 (etags-file-of-tag): Add new argument `relative`.
21 (list-tags): Set `buffer-read-only' to t after making the major mode 29 (list-tags): Set `buffer-read-only' to t after making the major mode
22 apropos-mode. 30 apropos-mode.
23 (etags-list-tags): Used `make-text-button' instead of 31 (etags-list-tags): Use `make-text-button' instead of
24 `add-text-properties'. Used `snarf-tag-function', 32 `add-text-properties'. Used `snarf-tag-function',
25 `goto-tag-location-function' and `find-file-of-tag' instead of 33 `goto-tag-location-function' and `find-file-of-tag' instead of
26 `find-tag-other-window' (it's too simple). 34 `find-tag-other-window' (it's too simple).
27 (find-tag-in-order): Used `find-file-of-tag-noselect' instead of 35 (find-tag-in-order): Use `find-file-of-tag-noselect' instead of
28 `find-file'. 36 `find-file'.
29 (etags-tags-apropos): Used `find-file-of-tag-noselect' instead of 37 (etags-tags-apropos): Use `find-file-of-tag-noselect' instead of
30 `find-file'. Do not use `etags-goto-tag-location` directly; use 38 `find-file'. Do not use `etags-goto-tag-location` directly; use
31 `goto-tag-location-function' instead. Print relative file paths 39 `goto-tag-location-function' instead. Print relative file paths
32 instead of complete ones in *Tags List* buffer, so lines in the 40 instead of complete ones in *Tags List* buffer, so lines in the
@@ -99,16 +107,15 @@
99 (Man-synopsis-regexp, Man-files-regexp, Man-include-regexp) 107 (Man-synopsis-regexp, Man-files-regexp, Man-include-regexp)
100 (Man-file-name-regexp, Man-normal-file-prefix-regexp) 108 (Man-file-name-regexp, Man-normal-file-prefix-regexp)
101 (Man-header-regexp, Man-normal-file-regexp): New variables. 109 (Man-header-regexp, Man-normal-file-regexp): New variables.
102 (Man-mode-map): Inherited from `button-buffer-map'. Don't define 110 (Man-mode-map): Inherit from `button-buffer-map'. Don't define
103 "\r" and mouse-2 directly. These key are defined in 111 "\r" and mouse-2 directly. These key are defined in
104 `button-buffer-map'. 112 `button-buffer-map'.
105 (Man-xref-man-page, Man-xref-header-file, Man-xref-normal-file): New 113 (Man-xref-man-page, Man-xref-header-file, Man-xref-normal-file):
106 buttons. `Man-xref-man-page' comes from woman.el. 114 New buttons. `Man-xref-man-page' comes from woman.el.
107 (man-follow-mouse): Removed. 115 (man-follow-mouse): Removed.
108 (Man-fontify-manpage): Use `Man-highlight-references' instead of 116 (Man-fontify-manpage): Use `Man-highlight-references' instead of
109 calling `add-text-properties' directly. 117 calling `add-text-properties' directly.
110 (Man-highlight-references, Man-highlight-references0): New 118 (Man-highlight-references, Man-highlight-references0): New functions.
111 functions.
112 (Man-view-header-file): New function. 119 (Man-view-header-file): New function.
113 120
1142003-04-02 Stefan Monnier <monnier@cs.yale.edu> 1212003-04-02 Stefan Monnier <monnier@cs.yale.edu>