]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKim F. Storm <storm@cua.dk>
Tue, 19 Apr 2005 10:11:26 +0000 (10:11 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 19 Apr 2005 10:11:26 +0000 (10:11 +0000)
etc/NEWS
lisp/ChangeLog
lispref/ChangeLog
man/ChangeLog
src/ChangeLog

index 121ca16deb608cc087a4568a924e81be84fa1ea6..cb383d0534cea12f08043afd066af33a3b4fcb88 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -142,7 +142,11 @@ commands cp, mv, and ln follow.)  Thus, M-x copy-file RET ~/foo RET
 M-o M-o requests refontification.
 
 +++
-** M-g is now a prefix key.  M-g g and M-g M-g run goto-line.
+** M-g is now a prefix key.
+
+M-g g and M-g M-g run goto-line.
+M-g n and M-g M-n run next-error (like C-x `).
+M-g p and M-g M-p run previous-error.
 
 +++
 ** font-lock-lines-before specifies a number of lines before the
@@ -309,8 +313,9 @@ characters.
 in the current input method to input a character at point.
 
 +++
-** Convenient commands to switch buffers in a cyclic order are C-x <left>
-(prev-buffer) and C-x <right> (next-buffer).
+** You can now switch buffers in a cyclic order with C-x C-left and
+(prev-buffer) and C-x C-right (next-buffer).  C-x left and C-x right
+can be used as well.
 
 ---
 ** Commands winner-redo and winner-undo, from winner.el, are now bound to
index 4d8e8c6dd5239d7dfa222bf56c907f1492d63814..2c7af82c87aadb6d7ba07bc5abaf72a0f577d263 100644 (file)
@@ -1,3 +1,15 @@
+2005-04-19  Kim F. Storm  <storm@cua.dk>
+
+       * simple.el (next-buffer, prev-buffer, next-error)
+       (scroll-other-window, keyboard-quit, keyboard-escape-quit)
+       (clone-indirect-buffer-other-window): Move bindings to bindings.el.
+
+       * bindings.el (next-buffer, prev-buffer, next-error)
+       (scroll-other-window, keyboard-quit, keyboard-escape-quit)
+       (clone-indirect-buffer-other-window): Move bindings from simple.el.
+       (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
+       (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
+
 2005-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * isearch.el (isearch-edit-string): Make the search-ring available for
index 14be8680906bdc3690cbeb925973ce39a1c41362..59fc7b2ed38a3b53a97fb5d8be9b74f56efd047e 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-19  Kim F. Storm  <storm@cua.dk>
+
+       * symbols.texi (Symbol Plists): Add safe-get.
+       Mention that `get' may signal an error.
+
 2005-04-18  Nick Roberts  <nickrob@snap.net.nz>
 
        * customize.texi (Variable Definitions): Replace tooltip-mode
index 694196c47b8f4dd627c7f95715b3c17ba8e1a53c..bda823618286f7fc2a024f552d9552c714f1524d 100644 (file)
@@ -1,8 +1,12 @@
+2005-04-19  Kim F. Storm  <storm@cua.dk>
+
+       * building.texi (Compilation Mode): Add M-g M-n and M-g M-p bindings.
+
 2005-04-18  Lars Hansen  <larsh@math.ku.dk>
 
        * misc.texi (Saving Emacs Sessions): Add that "--no-desktop" now
        turns off desktop-save-mode.
-       
+
 2005-04-17  Luc Teirlinck  <teirllm@auburn.edu>
 
        * frames.texi (XTerm Mouse): Xterm Mouse mode is no longer enabled
index e4a9f4eae9ff7dfca2369fa011119c60d8dd3e0a..30d0158b417d99ad6fd00d7f8b1e3207eddc6f18 100644 (file)
@@ -1,5 +1,11 @@
 2005-04-19  Kim F. Storm  <storm@cua.dk>
 
+       * xdisp.c (handle_stop): Set saved_face_id to current face if
+       selective_display_ellipsis_p so ellipsis will be shown in same
+       face as preceding text.
+       (setup_for_ellipsis): Don't set saved_face_id here.
+       (next_element_from_display_vector): Default to saved_face_id.
+
        * fns.c (Fsafe_get): New function.
        (syms_of_fns): Defsubr it.