# HG changeset patch # User Gerd Moellmann # Date 975965138 0 # Node ID 106595ce3db9a7b680f613e9e830a2d6fd1965e2 # Parent e624fa36b2527690b8b295b53a743319406625f2 *** empty log message *** diff -r e624fa36b252 -r 106595ce3db9 etc/NEWS --- a/etc/NEWS Mon Dec 04 21:20:57 2000 +0000 +++ b/etc/NEWS Mon Dec 04 21:25:38 2000 +0000 @@ -1430,6 +1430,12 @@ *** 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 -r e624fa36b252 -r 106595ce3db9 lisp/ChangeLog --- a/lisp/ChangeLog Mon Dec 04 21:20:57 2000 +0000 +++ b/lisp/ChangeLog Mon Dec 04 21:25:38 2000 +0000 @@ -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 -r e624fa36b252 -r 106595ce3db9 src/ChangeLog --- a/src/ChangeLog Mon Dec 04 21:20:57 2000 +0000 +++ b/src/ChangeLog Mon Dec 04 21:25:38 2000 +0000 @@ -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.