summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* * replace.el (occur-mode-goto-occurrence): Pop, don't switch.Chong Yidong2005-11-282-1/+5
|
* (flyspell-last-buffer): New var.Stefan Monnier2005-11-282-24/+39
| | | | | | | | | | (flyspell-accept-buffer-local-defs): Use it to avoid silly redundant work. (flyspell-mode-on): Use add-hook for after-change-functions. (flyspell-mode-off): Use remove-hook for after-change-functions. (flyspell-changes): Make it buffer-local. (flyspell-after-change-function): Make it non-interactive. Use push. (flyspell-post-command-hook): Check input-pending-p while processing the potentially long list of buffer changes.
* (list-buffers-noselect): Display the selected frame's buffer list, notKároly Lőrentey2005-11-282-1/+6
| | | | the global one.
* (xterm-mouse-event): Set last-input-event soNick Roberts2005-11-281-4/+6
| | | | that (list last-input-event) works as in interactive spec.
* *** empty log message ***Nick Roberts2005-11-281-2/+8
|
* *** empty log message ***Richard M. Stallman2005-11-281-0/+2
|
* ("facemenu"): Load facemenu before font-lock, becauseLuc Teirlinck2005-11-281-1/+1
| | | | | `facemenu-keymap' needs to be defined when font-lock is loaded. Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
* *** empty log message ***Luc Teirlinck2005-11-281-0/+6
|
* Remove useless leading * in defcustom docstrings.Stefan Monnier2005-11-282-431/+432
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | (save-completions-file-name): Use ~/.emacs.d if available. (completion-standard-syntax-table): Rename from cmpl-standard-syntax-table and fold initialization into declaration, thus removing cmpl-make-standard-completion-syntax-table. (completion-lisp-syntax-table, completion-c-syntax-table) (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem. (cmpl-saved-syntax, cmpl-saved-point): Remove. (symbol-under-point, symbol-before-point) (symbol-under-or-before-point, symbol-before-point-for-complete) (add-completions-from-c-buffer): Use with-syntax-table. (make-completion): Don't return a list of completion entries. Update callers. (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias. (completion-initialize): Rename from initialize-completions. (completion-find-file-hook): Rename from cmpl-find-file-hook. (kill-emacs-save-completions): Collect stats here. (save-completions-to-file, load-completions-from-file): Use with-current-buffer. (completion-def-wrapper): Rename from def-completion-wrapper. Make it into a function. Move all calls to toplevel. (completion-lisp-mode-hook): New fun. (completion-c-mode-hook, completion-setup-fortran-mode): Set the syntax-table here. Use local-set-key. (completion-saved-bindings): New var. (dynamic-completion-mode): Make it into a proper minor mode. (load-completions-from-file): Remove unused var `num-uses'.
* (Buffer-menu-revert-function): Make the selected window's buffer theLuc Teirlinck2005-11-271-1/+6
| | | | | | current buffer around the call to `list-buffers-noselect'. This is necessary to mark that buffer with a `.' in the Buffer Menu when called from Lisp, for instance by Auto Revert Mode.
* (dabbrev-completion): Simplify code, by getting rid of `if' whoseLuc Teirlinck2005-11-271-56/+38
| | | | condition always returned nil. Doc fix.
* *** empty log message ***Luc Teirlinck2005-11-271-1/+12
|
* Add entry: "Go in a buffer: Go Text Protocol client".Thien-Thi Nguyen2005-11-272-0/+9
|
* (gud-gdb-marker-filter): When GDB is invoked with a process number, detect it.Nick Roberts2005-11-271-3/+12
| | | | (gud-speedbar-buttons): Match regexp more carefully.
* (gdb-stopped): Detect process when attaching.Nick Roberts2005-11-271-0/+2
| | | | (gdb-pre-prompt): Make sure gdb-error is reset.
* *** empty log message ***Nick Roberts2005-11-271-0/+9
|
* (defstruct): Don't define the default constructor if it is overridden.Stefan Monnier2005-11-271-1/+6
|
* (PC-completion-as-file-name-predicate): Use minibuffer-completing-file-name.Stefan Monnier2005-11-271-35/+22
| | | | | | | | (partial-completion-mode): Use find-file-not-found-functions. (PC-lisp-complete-symbol): Use with-syntax-table. (PC-look-for-include-file): Remove dead setq. (PC-look-for-include-file, PC-expand-many-files, PC-do-completion) (PC-complete): Use with-current-buffer.
* (sh-font-lock-syntactic-keywords): \ doesn't escape single quotes.Stefan Monnier2005-11-271-0/+2
|
* *** empty log message ***Richard M. Stallman2005-11-274-0/+21
|
* (mouse-drag-move-window-bottom): Use adjust-window-trailing-edge.Richard M. Stallman2005-11-271-10/+3
|
* (Resizing Windows): Add adjust-window-trailing-edge.Richard M. Stallman2005-11-271-11/+25
|
* (adjust_window_trailing_edge): New function.Richard M. Stallman2005-11-271-1/+136
| | | | | | | (Fadjust_window_trailing_edge): New function. (syms_of_window): defsubr it. (window_deletion_count): New variable. (delete_window): Update window_deletion_count.
* (blink-matching-paren-on-screen): Doc fix.Luc Teirlinck2005-11-271-1/+1
|
* (blink-matching-paren-on-screen): Further doc fix.Luc Teirlinck2005-11-271-1/+3
|
* (show-paren-mode): No longer change `blink-matching-paren-on-screen'.Luc Teirlinck2005-11-271-8/+1
|
* (blink-matching-open): Ignore `blink-matching-paren-on-screen' ifLuc Teirlinck2005-11-271-5/+8
| | | | | `show-paren-mode' is enabled. (blink-matching-paren-on-screen): Update docstring.
* *** empty log message ***Luc Teirlinck2005-11-271-1/+1
|
* *** empty log message ***Luc Teirlinck2005-11-271-0/+9
|
* *** empty log message ***Richard M. Stallman2005-11-271-0/+2
|
* (gdb-edit-register-value): Use `posn-set-point' instead of `mouse-set-point'John Paul Wallington2005-11-272-4/+4
| | | | because the latter is not fbound when configured without X.
* *** empty log message ***Richard M. Stallman2005-11-271-0/+4
|
* (gdb-goto-breakpoint, gdb-frames-select, gdb-threads-select):Nick Roberts2005-11-271-3/+3
| | | | | Use `posn-set-point' instead of `mouse-set-point' because the latter is not fbound when configured without X.
* *** empty log message ***Nick Roberts2005-11-271-0/+7
|
* (cua--highlight-rectangle): PreserveKim F. Storm2005-11-261-1/+1
| | | | existing face when partially highlighting a TAB in a rectangle.
* *** empty log message ***Kim F. Storm2005-11-261-0/+5
|
* (ido-mode-map): Doc fix.Kim F. Storm2005-11-261-52/+97
| | | | | | | | | | | (ido-mode-common-map, ido-mode-file-map) (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps. (ido-define-mode-map): Rewrite. Select one of the new maps as parent for ido-mode-map instead of building from scratch. (ido-init-mode-maps): New defun to initialize new maps. (ido-mode): Call it. (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>. (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
* *** empty log message ***Kim F. Storm2005-11-261-2/+14
|
* (archive-extract): Use `posn-set-point' instead of `mouse-set-point'John Paul Wallington2005-11-262-1/+7
| | | | because the latter is not fbound when configured without X.
* (file-relative-name): Doc fix.Thien-Thi Nguyen2005-11-262-1/+5
|
* * emacs.rc: Use new icons.Chong Yidong2005-11-262-1/+5
|
* New icons installed.Chong Yidong2005-11-261-0/+6
|
* *** empty log message ***Eli Zaretskii2005-11-262-1/+11
|
* (syms_of_minibuf): Mention the extension of `completion-auto-help's meaningEli Zaretskii2005-11-261-1/+3
| | | | by complete.el.
* *** empty log message ***Eli Zaretskii2005-11-262-0/+11
|
* (Finternal_set_lisp_face_attribute_from_resource): Handle :inherit propertyEli Zaretskii2005-11-261-1/+1
| | | | as a lisp expression.
* (inferior-octave-startup): Force a non-empty string for secondary prompt PS2.Eli Zaretskii2005-11-261-0/+7
|
* New emacs.ico from Andrew Zhilin.Eli Zaretskii2005-11-261-0/+0
|
* Rename emacs.ico into emacs21.ico.Eli Zaretskii2005-11-261-0/+0
|
* * progmodes/compile.el (compilation-setup): Fix last fix.Chong Yidong2005-11-252-0/+5
|