diff options
| author | Gerd Moellmann | 2000-12-04 21:25:38 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-12-04 21:25:38 +0000 |
| commit | 0c68ce6f22f6d47a77e97ffbf546c4c91bacf99d (patch) | |
| tree | f242d8f3ac286bcf26152f49f476c5331079f654 | |
| parent | fb7775eb569812d8fe8854afca09172204fa5dc6 (diff) | |
| download | emacs-0c68ce6f22f6d47a77e97ffbf546c4c91bacf99d.tar.gz emacs-0c68ce6f22f6d47a77e97ffbf546c4c91bacf99d.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
3 files changed, 12 insertions, 0 deletions
| @@ -1430,6 +1430,12 @@ of tags in the output of M-x tags-apropos. | |||
| 1430 | *** Setting tags-apropos-verbose to a non-nil value displays the | 1430 | *** Setting tags-apropos-verbose to a non-nil value displays the |
| 1431 | names of tags files in the *Tags List* buffer. | 1431 | names of tags files in the *Tags List* buffer. |
| 1432 | 1432 | ||
| 1433 | *** You can now search for tags that are part of the filename itself. | ||
| 1434 | If you have tagged the files topfile.c subdir/subfile.c | ||
| 1435 | /tmp/tempfile.c, you can now search for tags "topfile.c", "subfile.c", | ||
| 1436 | "dir/sub", "tempfile", "tempfile.c". If the tag matches the filename, | ||
| 1437 | point will go to the beginning of the file. | ||
| 1438 | |||
| 1433 | +++ | 1439 | +++ |
| 1434 | ** Emacs now attempts to determine the initial language environment | 1440 | ** Emacs now attempts to determine the initial language environment |
| 1435 | and preferred and locale coding systems systematically from the | 1441 | and preferred and locale coding systems systematically from the |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cf053117fee..236a680f3bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -11,6 +11,10 @@ | |||
| 11 | * mail/rmail.el (rmail-expunge-confirmed): New function. | 11 | * mail/rmail.el (rmail-expunge-confirmed): New function. |
| 12 | (rmail-expunge): Use it. | 12 | (rmail-expunge): Use it. |
| 13 | 13 | ||
| 14 | * progmodes/etags.el (tag-partial-file-name-match-p): New function. | ||
| 15 | (etags-recognize-tags-table, find-tag-in-order): New | ||
| 16 | functionality: interpret file names as tags. | ||
| 17 | |||
| 14 | 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il> | 18 | 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il> |
| 15 | 19 | ||
| 16 | * info.el (Info-scroll-prefer-subnodes): New defcustom. | 20 | * info.el (Info-scroll-prefer-subnodes): New defcustom. |
diff --git a/src/ChangeLog b/src/ChangeLog index 820e8bde563..82b5e6fed15 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2000-12-04 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-12-04 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * xterm.c (PER_CHAR_METRIC): Removed because not used. | ||
| 4 | |||
| 3 | * xterm.c (expose_area): Pass x-coordinate relative to the exposed | 5 | * xterm.c (expose_area): Pass x-coordinate relative to the exposed |
| 4 | area to x_draw_glyphs instead of a window-relative coordinate. | 6 | area to x_draw_glyphs instead of a window-relative coordinate. |
| 5 | 7 | ||