auctex-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 48001b9a357938e567020


From: Mosè Giordano
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 48001b9a357938e567020333af0a132a38b86e15
Date: Sat, 12 Jul 2014 11:16:57 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  48001b9a357938e567020333af0a132a38b86e15 (commit)
      from  89c27b4f44865e0e697c65b600521d6299619547 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 48001b9a357938e567020333af0a132a38b86e15
Author: Mosè Giordano <address@hidden>
Date:   Sat Jul 12 13:14:50 2014 +0200

    Fix remaining XEmacs compilation issues.
    
    * tex-buf.el (TeX-error-description-error): Do not use the
    `default' display, not supported by GNU Emacs 21 and XEmacs 21.4.
    (TeX-error-description-warning): Ditto.

diff --git a/ChangeLog b/ChangeLog
index 95f0497..cfcbe41 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-07-12  Mosè Giordano  <address@hidden>
+
+       * tex-buf.el (TeX-error-description-error): Do not use the
+       `default' display, not supported by GNU Emacs 21 and XEmacs 21.4.
+       (TeX-error-description-warning): Ditto.
+
 2014-07-11  Mosè Giordano  <address@hidden>
 
        * tex-buf.el (TeX-error-description-error): Make face definition
diff --git a/tex-buf.el b/tex-buf.el
index a4eab05..1d3c605 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -1896,20 +1896,23 @@ warning."
 
 (defface TeX-error-description-error
   ;; This is the same as `error' face in latest GNU Emacs versions.
-  '((default :weight bold)
-    (((class color) (min-colors 88) (background light)) :foreground "Red1")
-    (((class color) (min-colors 88) (background dark))  :foreground "Pink")
-    (((class color) (min-colors 16) (background light)) :foreground "Red1")
-    (((class color) (min-colors 16) (background dark))  :foreground "Pink")
-    (((class color) (min-colors 8)) :foreground "red")
-    (t (:inverse-video t)))
+  '((((class color) (min-colors 88) (background light))
+     :foreground "Red1" :weight bold)
+    (((class color) (min-colors 88) (background dark))
+     :foreground "Pink" :weight bold)
+    (((class color) (min-colors 16) (background light))
+     :foreground "Red1" :weight bold)
+    (((class color) (min-colors 16) (background dark))
+     :foreground "Pink" :weight bold)
+    (((class color) (min-colors 8))
+     :foreground "red" :weight bold)
+    (t (:inverse-video t :weight bold)))
   "Face for \"Error\" string in error descriptions.")
 
 (defface TeX-error-description-warning
   ;; This is the same as `warning' face in latest GNU Emacs versions.
-  '((default :weight bold)
-    (((class color) (min-colors 16)) :foreground "DarkOrange")
-    (((class color)) :foreground "yellow"))
+  '((((class color) (min-colors 16)) :foreground "DarkOrange" :weight bold)
+    (((class color)) :foreground "yellow" :weight bold))
   "Face for \"Warning\" string in error descriptions.")
 
 (defface TeX-error-description-tex-said

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog  |    6 ++++++
 tex-buf.el |   23 +++++++++++++----------
 2 files changed, 19 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

[Prev in Thread] Current Thread [Next in Thread]