From: Gerd Moellmann Date: Mon, 4 Dec 2000 21:25:38 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.93~229 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c68ce6f22f6d47a77e97ffbf546c4c91bacf99d;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 0440c46cc68..7e7e093a3f1 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1430,6 +1430,12 @@ of tags in the output of M-x tags-apropos. *** Setting tags-apropos-verbose to a non-nil value displays the names of tags files in the *Tags List* buffer. +*** You can now search for tags that are part of the filename itself. +If you have tagged the files topfile.c subdir/subfile.c +/tmp/tempfile.c, you can now search for tags "topfile.c", "subfile.c", +"dir/sub", "tempfile", "tempfile.c". If the tag matches the filename, +point will go to the beginning of the file. + +++ ** Emacs now attempts to determine the initial language environment 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 @@ * mail/rmail.el (rmail-expunge-confirmed): New function. (rmail-expunge): Use it. + * progmodes/etags.el (tag-partial-file-name-match-p): New function. + (etags-recognize-tags-table, find-tag-in-order): New + functionality: interpret file names as tags. + 2000-12-04 Eli Zaretskii * 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 @@ 2000-12-04 Gerd Moellmann + * xterm.c (PER_CHAR_METRIC): Removed because not used. + * xterm.c (expose_area): Pass x-coordinate relative to the exposed area to x_draw_glyphs instead of a window-relative coordinate.