*** empty log message ***

This commit is contained in:
Kim F. Storm 2005-04-19 10:11:26 +00:00
parent 834671a685
commit 5827e9d460
5 changed files with 36 additions and 4 deletions

View file

@ -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

View 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

View 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

View 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

View 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.