]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Sat, 25 Jun 2005 22:38:44 +0000 (22:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 25 Jun 2005 22:38:44 +0000 (22:38 +0000)
admin/FOR-RELEASE
lisp/ChangeLog
src/ChangeLog

index ce878fc173fb72d4597ac8a8c6fa3cc7ff7c9fe4..c28608068ba7e65f2ca99f996df9fba78415bc1f 100644 (file)
@@ -14,6 +14,8 @@ has to be set to nil: when t, it can leak memory and cause other problems.
 ** Check for widow and orphan lines in manuals;
 make sure all the pages really look ok in the manual as formatted.
 
+** Update facemenu-unlisted-faces, adding whatever other
+face name prefixes should be in it for good results.
 
 * NEW FEATURES
 
@@ -43,6 +45,36 @@ invalid pointer from string_free_list.
 
 * BUGS
 
+** Bug in ebrowse
+
+Date: Fri, 27 May 2005 17:35:48 +0200
+From: Markus Gritsch <gritsch@iue.tuwien.ac.at>
+
+the C++ header file which led to the problematic BROWSE file reads
+
+namespace test {
+     class Base
+     {
+     };
+
+     class B : public Base
+     {
+     };
+}
+
+class A : public test::Base
+{
+};
+
+The *Tree* is then displayed as
+
+   *Globals*
+   test
+   test::Base
+     test::B
+
+The class A seems to be missing.
+
 ** Ange-ftp should ignore irrelevant IPv6 errors:
 
 Message-Id: <4121-Tue23Mar2004165249+0100-piet@cs.uu.nl>
index 9d879823f8a3547e94a4767d6e93012ea996a9b1..3880d41e9254db35031e5fe2795b853cb1beaa53 100644 (file)
@@ -1,5 +1,9 @@
 2005-06-25  Richard M. Stallman  <rms@gnu.org>
 
+       * facemenu.el (facemenu-enable-faces-p): New function.
+       (facemenu-background-menu, facemenu-foreground-menu)
+       (facemenu-face-menu): Add menu-enable property.
+
        * jka-compr.el (jka-compr-insert-file-contents):
        Special handling if cannot find the uncompression program.
 
index 17917b159e3b6766215937d3157cf39949d8fc21..046d1a321fe36d1bd18867178db7e8e2d982556b 100644 (file)
@@ -1,5 +1,21 @@
 2005-06-25  Richard M. Stallman  <rms@gnu.org>
 
+       * macfns.c (Fx_show_tip): Pass new arg to try_window.
+
+       * w32fns.c (Fx_show_tip): Pass new arg to try_window.
+
+       * xfns.c (Fx_show_tip): Pass new arg to try_window.
+
+       * xdisp.c (try_window): New arg CHECK_MARGINS.  Calls changed.
+       (redisplay_window): Handle try_window reporting point in scroll margin.
+
+       * dispextern.h (try_window): Declare new arg.
+
+       * fileio.c (Fcopy_file): New arg PRESERVE_UID_GID.
+       Use fchmod to copy the file modes.
+       (Frename_file): Don't copy UID and GID here;
+       instead, specify t for PRESERVE_UID_GID when calling Fcopy_file.
+
        * eval.c (call_debugger): Take full care of extending stack limits
        to make space for the debugger, and restore the change afterward.
        Bind debug-on-error to nil.