emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109091: Add a new bitmap exclamation


From: Leo Liu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109091: Add a new bitmap exclamation-mark
Date: Sat, 14 Jul 2012 19:44:39 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109091
committer: Leo Liu <address@hidden>
branch nick: trunk
timestamp: Sat 2012-07-14 19:44:39 +0800
message:
  Add a new bitmap exclamation-mark
modified:
  lisp/ChangeLog
  lisp/fringe.el
  src/ChangeLog
  src/fringe.c
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-07-14 09:08:36 +0000
+++ b/lisp/ChangeLog    2012-07-14 11:44:39 +0000
@@ -1,3 +1,7 @@
+2012-07-14  Leo Liu  <address@hidden>
+
+       * fringe.el: New bitmap exclamation-mark.
+
 2012-07-14  Jan Djärv  <address@hidden>
 
        * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods

=== modified file 'lisp/fringe.el'
--- a/lisp/fringe.el    2012-06-29 11:48:08 +0000
+++ b/lisp/fringe.el    2012-07-14 11:44:39 +0000
@@ -43,7 +43,7 @@
 ;; Define the built-in fringe bitmaps and setup default mappings
 
 (when (boundp 'fringe-bitmaps)
-  (let ((bitmaps '(question-mark
+  (let ((bitmaps '(question-mark exclamation-mark
                   left-arrow right-arrow up-arrow down-arrow
                   left-curly-arrow right-curly-arrow
                   left-triangle right-triangle

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-07-14 10:03:30 +0000
+++ b/src/ChangeLog     2012-07-14 11:44:39 +0000
@@ -1,3 +1,7 @@
+2012-07-14  Leo Liu  <address@hidden>
+
+       * fringe.c: Add a new bitmap exclamation-mark.
+
 2012-07-14  Eli Zaretskii  <address@hidden>
 
        * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.

=== modified file 'src/fringe.c'
--- a/src/fringe.c      2012-07-05 18:35:48 +0000
+++ b/src/fringe.c      2012-07-14 11:44:39 +0000
@@ -107,6 +107,22 @@
 static unsigned short question_mark_bits[] = {
   0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18};
 
+/* A exclamation mark.  */
+/*
+  ...XX...
+  ...XX...
+  ...XX...
+  ...XX...
+  ...XX...
+  ...XX...
+  ...XX...
+  ........
+  ...XX...
+  ...XX...
+*/
+static unsigned short exclamation_mark_bits[] = {
+  0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18};
+
 /* An arrow like this: `<-'.  */
 /*
   ...xx...
@@ -432,6 +448,7 @@
 {
   { NULL, 0, 0, 0, 0, 0 }, /* NO_FRINGE_BITMAP */
   { FRBITS (question_mark_bits),      8, 0, ALIGN_BITMAP_CENTER, 0 },
+  { FRBITS (exclamation_mark_bits),   8, 0, ALIGN_BITMAP_CENTER, 0 },
   { FRBITS (left_arrow_bits),         8, 0, ALIGN_BITMAP_CENTER, 0 },
   { FRBITS (right_arrow_bits),        8, 0, ALIGN_BITMAP_CENTER, 0 },
   { FRBITS (up_arrow_bits),           8, 0, ALIGN_BITMAP_TOP,    0 },


reply via email to

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