diff options
| author | Leo Liu | 2012-07-15 08:52:16 +0800 |
|---|---|---|
| committer | Leo Liu | 2012-07-15 08:52:16 +0800 |
| commit | 2e2d2a13e59e6332ea2623cfe4b3c1cd5afaed2c (patch) | |
| tree | 71bbef916a92f832aafe1209a955e07ac30d3fd1 | |
| parent | 63408057e7b8f8f9e04fa689117c75b498406daf (diff) | |
| download | emacs-2e2d2a13e59e6332ea2623cfe4b3c1cd5afaed2c.tar.gz emacs-2e2d2a13e59e6332ea2623cfe4b3c1cd5afaed2c.zip | |
Add news for exclamation-mark and flymake
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/display.texi | 2 | ||||
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fringe.c | 2 |
6 files changed, 20 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 0c550181899..5378cc16cdb 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-07-15 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * display.texi (Fringe Bitmaps): Add exclamation-mark. | ||
| 4 | |||
| 1 | 2012-07-13 Chong Yidong <cyd@gnu.org> | 5 | 2012-07-13 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * buffers.texi (Read Only Buffers): Document toggle-read-only | 7 | * buffers.texi (Read Only Buffers): Document toggle-read-only |
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index 53c3ebe8b97..01d177feb87 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -3550,7 +3550,7 @@ Used to indicate buffer boundaries. | |||
| 3550 | @itemx @code{vertical-bar}, @code{horizontal-bar} | 3550 | @itemx @code{vertical-bar}, @code{horizontal-bar} |
| 3551 | Used for different types of fringe cursors. | 3551 | Used for different types of fringe cursors. |
| 3552 | 3552 | ||
| 3553 | @item @code{empty-line}, @code{question-mark} | 3553 | @item @code{empty-line}, @code{question-mark}, @code{exclamation-mark} |
| 3554 | Unused. | 3554 | Unused. |
| 3555 | @end table | 3555 | @end table |
| 3556 | 3556 | ||
diff --git a/etc/ChangeLog b/etc/ChangeLog index f184cbfa462..5c5f85a1a25 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-07-15 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * NEWS: Mention exclamation-mark and flymake. | ||
| 4 | |||
| 1 | 2012-07-08 Juanma Barranquero <lekktu@gmail.com> | 5 | 2012-07-08 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * tutorials/TUTORIAL.es: Sync with changes in 2012-07-07T10:34:37Z!cyd@gnu.org. | 7 | * tutorials/TUTORIAL.es: Sync with changes in 2012-07-07T10:34:37Z!cyd@gnu.org. |
| @@ -113,6 +113,8 @@ treated as images. | |||
| 113 | ** Face underlining can now use a wave. | 113 | ** Face underlining can now use a wave. |
| 114 | See the "Face Attributes" section of the Elisp manual. | 114 | See the "Face Attributes" section of the Elisp manual. |
| 115 | 115 | ||
| 116 | ** New fringe bitmap exclamation-mark. | ||
| 117 | |||
| 116 | ** String values for `initial-buffer-choice' also apply to emacsclient | 118 | ** String values for `initial-buffer-choice' also apply to emacsclient |
| 117 | frames, if emacsclient is only told to open a new frame without | 119 | frames, if emacsclient is only told to open a new frame without |
| 118 | specifying any file to visit or expression to evaluate. | 120 | specifying any file to visit or expression to evaluate. |
| @@ -268,6 +270,10 @@ The variable `diff-use-changed-face' defines whether to use | |||
| 268 | the face `diff-changed', or `diff-removed' and `diff-added' | 270 | the face `diff-changed', or `diff-removed' and `diff-added' |
| 269 | to highlight changes in context diffs. | 271 | to highlight changes in context diffs. |
| 270 | 272 | ||
| 273 | ** Flymake uses fringe bitmaps to indicate errors and warnings. | ||
| 274 | See flymake-fringe-indicator-position, flymake-error-bitmap and | ||
| 275 | flymake-warning-bitmap. | ||
| 276 | |||
| 271 | ** Ediff now uses the same color scheme as Diff mode | 277 | ** Ediff now uses the same color scheme as Diff mode |
| 272 | on high color displays. | 278 | on high color displays. |
| 273 | 279 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index eca3f526bc1..67bbf0b5bb7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-07-15 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * fringe.c: Fix typo in comments. | ||
| 4 | |||
| 1 | 2012-07-14 Leo Liu <sdl.web@gmail.com> | 5 | 2012-07-14 Leo Liu <sdl.web@gmail.com> |
| 2 | 6 | ||
| 3 | * fringe.c: Add a new bitmap exclamation-mark. | 7 | * fringe.c: Add a new bitmap exclamation-mark. |
diff --git a/src/fringe.c b/src/fringe.c index 8de14ef4544..97d03a2bfae 100644 --- a/src/fringe.c +++ b/src/fringe.c | |||
| @@ -107,7 +107,7 @@ struct fringe_bitmap | |||
| 107 | static unsigned short question_mark_bits[] = { | 107 | static unsigned short question_mark_bits[] = { |
| 108 | 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18}; | 108 | 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18}; |
| 109 | 109 | ||
| 110 | /* A exclamation mark. */ | 110 | /* An exclamation mark. */ |
| 111 | /* | 111 | /* |
| 112 | ...XX... | 112 | ...XX... |
| 113 | ...XX... | 113 | ...XX... |