changeset 61655:81c033739b60

*** empty log message ***
author Kim F. Storm <storm@cua.dk>
date Tue, 19 Apr 2005 10:11:26 +0000
parents 886cadbeb39b
children 23324e660890
files etc/NEWS lisp/ChangeLog lispref/ChangeLog man/ChangeLog src/ChangeLog
diffstat 5 files changed, 36 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/etc/NEWS	Tue Apr 19 09:59:29 2005 +0000
+++ b/etc/NEWS	Tue Apr 19 10:11:26 2005 +0000
@@ -142,7 +142,11 @@
 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 @@
 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
--- a/lisp/ChangeLog	Tue Apr 19 09:59:29 2005 +0000
+++ b/lisp/ChangeLog	Tue Apr 19 10:11:26 2005 +0000
@@ -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
--- a/lispref/ChangeLog	Tue Apr 19 09:59:29 2005 +0000
+++ b/lispref/ChangeLog	Tue Apr 19 10:11:26 2005 +0000
@@ -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
--- a/man/ChangeLog	Tue Apr 19 09:59:29 2005 +0000
+++ b/man/ChangeLog	Tue Apr 19 10:11:26 2005 +0000
@@ -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
--- a/src/ChangeLog	Tue Apr 19 09:59:29 2005 +0000
+++ b/src/ChangeLog	Tue Apr 19 10:11:26 2005 +0000
@@ -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.