Mercurial > emacs
diff lisp/ChangeLog @ 83145:fe5ecb72e304
Merged in changes from CVS trunk.
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-366
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-367
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-368
Improve display-supports-face-attributes-p on non-ttys
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-369
Rewrite face-differs-from-default-p
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-370
Move `display-supports-face-attributes-p' entirely into C code
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-371
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-372
Simplify face-differs-from-default-p; don't consider :stipple.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-373
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-374
(tty_supports_face_attributes_p): Ensure attributes differ from default
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-375
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-185
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sat, 05 Jun 2004 17:21:43 +0000 |
parents | 2e868590c17b 4fbbfb3ab1c3 |
children | cf8f0a3b5cb4 |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Jun 03 16:45:20 2004 +0000 +++ b/lisp/ChangeLog Sat Jun 05 17:21:43 2004 +0000 @@ -1,3 +1,59 @@ +2004-06-05 Juanma Barranquero <lektu@terra.es> + + * help-fns.el (help-argument-name): Reintroduce face. + (help-default-arg-highlight): Use it, now that + `face-differs-from-default-p' can be trusted. + +2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change) + + * textmodes/table.el: Sentence commands added to Point Motion + group; kill and backward-kill commands added to Extraction group. + +2004-06-04 Mario Lang <mlang@delysid.org> + + * battery.el (battery-linux-proc-acpi): mA was hardcored, but some + systems appear to use mW, make the code handle this. Fix a + division-by-zero bug while at it, and handle kernels with + a slightly different layout in /proc/acpi. + +2004-06-04 Karl Fogel <kfogel@red-bean.com> + + * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*', + because the latter is a CL-ism. This fixes the bug reported by + Shawn Boyette <mdxi@collapsar.net> in + http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html. + +2004-06-04 Miles Bader <miles@gnu.org> + + * faces.el (display-supports-face-attributes-p): Function moved to + C code. Previously only the tty-related portion of this function + was done in C; however the previous attempt to do a halfway-proper + job for non-tty displays in lisp didn't work properly because of + funny conditions during Emacs startup. + (face-differs-from-default-p): Simplify, now that + display-supports-face-attributes-p works properly on all display + types. Remove :stipple from comparison; it doesn't really work + in emacs anyway. + +2004-06-04 Miles Bader <miles@gnu.org> + + * faces.el (face-differs-from-default-p): Use a different + implementation, so we can really check whether FACE displays + differently or not. + +2004-06-04 Miles Bader <miles@gnu.org> + + * faces.el (display-supports-face-attributes-p): Implement a + `different from default' check for non-tty displays. + +2004-06-03 David Kastrup <dak@gnu.org> + + * woman.el (woman-mapcan): More concise code. + (woman-topic-all-completions, woman-topic-all-completions-1) + (woman-topic-all-completions-merge): Replace by a simpler and + much faster implementation based on O(n log n) sort/merge instead + of the old O(n^2) behavior. + 2004-06-03 Miles Bader <miles@gnu.org> * subr.el (read-number): Use canonical format for default in prompt. @@ -193,7 +249,7 @@ * thumbs.el (thumbs-show-name): Do nothing if no image at point. (thumbs-mouse-find-image): New command. (thumbs-mode-map): Bind it to mouse-2. - (thumbs-mode): Make mode-class special. + (thumbs-mode): Make mode-class special. (thumbs-view-image-mode): Likewise. 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com> @@ -1382,7 +1438,7 @@ (sql-connect-postgres): Add username prompt. (sql-imenu-generic-expression, sql-mode-font-lock-object-name): Make patterns less product specific. - (sql-xemacs-p, sql-emacs19-p): Add flags for emacs variants. + (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants. (sql-mode-abbrev-table): Modify initialization. (sql-builtin-face): Add variable. (sql-keywords-re): Add macro. @@ -6381,7 +6437,7 @@ (ffap-file-at-point): Use the new regexp to strip the prompts from the file names. This is an issue mostly for user prompts that don't have a trailing space and find-file-at-point is invoked from - within a shell inside emacs. + within a shell inside Emacs. 2003-09-24 Andre Spiegel <spiegel@gnu.org>