]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorNick Roberts <nickrob@snap.net.nz>
Mon, 16 May 2005 00:30:03 +0000 (00:30 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Mon, 16 May 2005 00:30:03 +0000 (00:30 +0000)
etc/NEWS
lisp/ChangeLog

index 5e85fe95f8f923caecd44c45c08b8e1e39dd256e..0601c72199ab49f7901a60b16a0b51f099660f12 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1283,6 +1283,15 @@ buffer causes automatic display in another window of the corresponding
 matches, compilation errors, etc.  This minor mode can be toggled with
 C-c C-f.
 
+*** When the left fringe is displayed, an overlay arrow points to current
+message in the compilation buffer.  
+
+*** The new variable `compilation-context-lines' controls lines of leading
+context before the current message.  If nil and the left fringe is displayed,
+it doesn't scroll the compilation output window.  If there is no left fringe,
+no arrow is displayed and a value of nil means display the message at the top
+of the window.
+
 ** Occur mode changes:
 
 +++
@@ -2262,11 +2271,12 @@ and other common debugger commands.
 *** The new package gdb-ui.el provides an enhanced graphical interface to
 GDB. You can interact with GDB through the GUD buffer in the usual way, but
 there are also further buffers which control the execution and describe the
-state of your program.  It separates the input/output of your program from
+state of your program.  It can separate the input/output of your program from
 that of GDB and watches expressions in the speedbar.  It also uses features of
-Emacs 21 such as the display margin for breakpoints, and the toolbar.
+Emacs 21/22 such as the the toolbar, and bitmaps in the fringe to indicate
+breakpoints.
 
-Use M-x gdba to start GDB-UI.
+Use M-x gdb to start GDB-UI.
 
 *** GUD tooltips can be toggled independently of normal tooltips
 with the minor mode `gud-tooltip-mode'.
index 02da80fa1d0cd54cf012c58e40d4f034faf5f2b9..365be16843cd4e0aaab22dd011cd6d8581c244cd 100644 (file)
@@ -2,10 +2,10 @@
 
        * subr.el (left-fringe-p): New function.
 
-       * progmodes/compile.el (compilation-setup): Set local value
-       of overlay-arrow-string to "" always.
-       (compilation-set-window): Left fringe then scroll. No left
-       fringe then no arrow and don't scroll.
+       * progmodes/compile.el (compilation-setup): Set local value of
+       overlay-arrow-string to "" always.
+       (compilation-set-window): Left fringe then don't scroll. No left
+       fringe then no arrow and scroll message to top.
        (compilation-context-lines): Adjust doc string accordingly.
 
 2005-05-16  Kim F. Storm  <storm@cua.dk>