summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Bump version to 23.1.90.emacs-pretest-23.1.90Chong Yidong2009-12-09
|
* AUTHORS: RegenerateChong Yidong2009-12-09
|
* ldefs-boot.el: Regenerate.Chong Yidong2009-12-09
|
* Get rid of the ELCFILES abomination.Stefan Monnier2009-12-09
| | | | | | | | * Makefile.in (update-elclist, ELCFILES, compile-last): Remove. (compile-elcfiles): New phony target. (compile-main): Compute ELCFILES dynamically. (compile-clean): New target to remove left-over elc files. (compile, all): Use it.
* Remove resolved GTK on Cygwin problem.Chong Yidong2009-12-09
|
* * configure.in: Allow compiling Emacs with GTK on Cygwin.Chong Yidong2009-12-09
| | | | | | | * src/s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable. * src/emacs.c (main): Set the G_SLICE environment variable for Cygwin GTK builds.
* Require help-mode instead of help-fns.Kenichi Handa2009-12-09
|
* *** empty log message ***Kenichi Handa2009-12-09
|
* (ucs-names): Supply a sufficiently fine ranges instead ofKenichi Handa2009-12-09
| | | | | pre-calculating accurate ranges. Iterate with bigger gc-cons-threshold.
* Add support for stashing a snapshot of the current tree.Dan Nicolaescu2009-12-08
| | | | | * vc-git.el (vc-git-stash-snapshot): New function. (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
* * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'Juanma Barranquero2009-12-08
| | | | instead of `(beginning|end)-of-line'.
* Fix entries.Glenn Morris2009-12-08
|
* (vc-mtn-print-log): Fix typo in previous.Glenn Morris2009-12-08
|
* (ELCFILES): Regenerate.Glenn Morris2009-12-08
|
* Fix log entries.Glenn Morris2009-12-08
|
* NEWS entries for mail-user-agent and CEDET.Chong Yidong2009-12-08
|
* Don't lazy-highlight the comint output in history Isearch mode.Juri Linkov2009-12-07
| | | | | | | * comint.el (comint-history-isearch-search): Instead of `comint-line-beginning-position', use `comint-after-pmark-p' to check if point if before the process mark, and go to `process-mark' in this case.
* (latex-complete, latex-indent-or-complete): Remove.Stefan Monnier2009-12-07
| | | | (latex-mode): Set completion-at-point-functions instead.
* (unexec): Don't search for .data twice.Andreas Schwab2009-12-07
|
* * minibuffer.el (completion-at-point-functions): New var.Stefan Monnier2009-12-07
| | | | | | | | | | | | | | | | | | | (completion-at-point): New command. * indent.el (indent-for-tab-command): Handle the new `complete' behavior. * progmodes/python.el (python-mode-map): Use completion-at-point. (python-completion-at-point): Rename from python-partial-symbol and adjust for use in completion-at-point-functions. (python-mode): Setup completion-at-point for Python completion. * emacs-lisp/lisp.el (lisp-completion-at-point): New function extracted from lisp-complete-symbol. (lisp-complete-symbol): Use it. * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode, setup completion-at-point for Elisp completion. (emacs-lisp-mode-map, lisp-interaction-mode-map): Use completion-at-point. * ielm.el (ielm-map): Use completion-at-point. (inferior-emacs-lisp-mode): Setup completion-at-point for Elisp completion. * progmodes/sym-comp.el: Move to... * obsolete/sym-comp.el: Move from progmodes.
* Prevent save-buffer in Rmail buffers from using the coding-systemEli Zaretskii2009-12-07
| | | | | | | | | | | | of the current message, and from clobbering the encoding mnemonics in the mode line (Bug#4623). (rmail-swap-buffers): Swap encoding and modified flag, too. (rmail-message-encoding): New variable. (rmail-write-region-annotate): Record the encoding of the current message in rmail-message-encoding. (rmail-after-save-hook): New function, restores the encoding of the current message after the message collection is saved.
* (grep-read-files): Use `completing-read'Juri Linkov2009-12-07
| | | | | instead of `read-string'. Set its `collection' arg to `read-file-name-internal'. (Bug#4301)
* Correctly restore original Isearch point. (Bug#4994)Juri Linkov2009-12-07
| | | | | | | | | | * isearch.el (isearch-mode): Move `isearch-push-state' after `(run-hooks 'isearch-mode-hook)'. (isearch-cancel): When `isearch-push-state-function' is defined, let-bind `isearch-cmds' to the first state (the last element of `isearch-cmds') and call `isearch-top-state' (it calls pop-state function and restores the original point). Otherwise, move point to `isearch-opoint'.
* (ucs-names): Fix last-minute paren-typo.Stefan Monnier2009-12-07
|
* * vc-bzr.el (vc-bzr-annotate-command): More elegant form for lastChong Yidong2009-12-07
| | | | change. Suggested by David Kastrup.
* Added compose-mail-user-agent-warnings.Chong Yidong2009-12-07
|
* (ucs-names): Weed out at compile-time the chars that don't have names, soStefan Monnier2009-12-07
| | | | the table can be built much faster at run-time.
* * simple.el (compose-mail): Check for incompatibilities and warn.Chong Yidong2009-12-07
| | | | (compose-mail-user-agent-warnings): New option.
* Support showing a single log entry from vc-annotate.Dan Nicolaescu2009-12-07
| | | | | | | | | | | | | | | | | | | | * vc.el (print-log): Add a new argument: START-REVISION. (vc-print-log-internal): Add a new optional argument and pass it to the backend. (vc-print-log, vc-print-root-log): Adjust callers. * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a buffer already displays the requested log entry, use it. Otherwise display only the log entry in question. * vc-svn.el (vc-svn-print-log): * vc-mtn.el (log-view-file-re): * vc-hg.el (vc-hg-state): * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION. (vc-git-show-log-entry): Return t on success. * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION. (vc-bzr-show-log-entry): Return t on success. * vc-rcs.el (vc-rcs-print-log): * vc-sccs.el (vc-sccs-print-log): * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
* 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>Michael Kifer2009-12-07
| | | | | | | | | | * ediff-init.el (ediff-event-key): use event-to-character instead of event-key. * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer): add menus to the meta mode. (Dan Nicolaescu's <dann@ics.uci.edu> patch.) * ediff.el (ediff-buffers-internal): add unwind-protect.
* Handle prompt rules of ksh in OpenBSD 4.5. Reported by RaphaëlMichael Albinus2009-12-07
| | | | | | | | | | | | | | | | Berbain <raphael.berbain@gmail.com>. * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$' characters. (tramp-initial-end-of-output): New defconst. (tramp-methods, tramp-find-shell) (tramp-open-connection-setup-interactive-shell) (tramp-maybe-open-connection): Use it. (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle existence of `#' and `$'. * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use `tramp-initial-end-of-output'.
* Get the background mode from the terminal for xterm, and setDan Nicolaescu2009-12-07
| | | | | | | | faces accordingly. * term/xterm.el (xterm-set-background-mode): New function. (terminal-init-xterm): Use it in case xterm supports background color queries. Recompute faces after getting the background color.
* Ulrich Mueller <ulm at gentoo.org>Glenn Morris2009-12-07
| | | | | (byte-compile-insert-header): Put the version number comment back on its own line, for easier parsing by external tools.
* Make it work for non-file buffers (bug#5102).Stefan Monnier2009-12-07
| | | | | | * doc-view.el (doc-view-current-cache-dir): Use doc-view-buffer-file-name rather than buffer-file-name. (doc-view-mode): Use buffer-name when buffer-file-name is nil.
* * vc-bzr.el (vc-bzr-annotate-command): Handle the case where theChong Yidong2009-12-06
| | | | author field is too short.
* *** empty log message ***Dan Nicolaescu2009-12-06
|
* * vc-git.el (vc-git-print-log): Handle a limit argument. DisplayDan Nicolaescu2009-12-06
| | | | | the short log in graph form and with labels. (vc-git-log-view-mode): Handle labels.
* Make vc-revert change VC state from 'added to 'unregistered.Dan Nicolaescu2009-12-06
| | | | * vc-git.el (vc-git-revert): Call git reset first.
* * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.Chong Yidong2009-12-06
|
* * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.Chong Yidong2009-12-06
| | | | | | Handle empty author field (Bug#4144). Suggested by Óscar Fuentes. (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line): Update annotation regexp.
* Fixed Bug#5096.Ulf Jasper2009-12-06
|
* * simple.el (beginning-of-visual-line): Constrain to fieldChong Yidong2009-12-06
| | | | boundaries (Bug#5106).
* Fixed Bug#5008.Ulf Jasper2009-12-06
|
* * progmodes/js.el (js--js-not): Add null to the list of values.Chong Yidong2009-12-06
|
* * ansi-color.el (ansi-color-for-comint-mode): Add :versionChong Yidong2009-12-06
| | | | keyword.
* * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry delimiterRoland Winkler2009-12-06
| | | | | if it is at the end of the current line. (bibtex-generate-url-list): Fix docstring.
* (bibtex-enclosing-field): Exclude entry delimiter if it is at the endRoland Winkler2009-12-06
| | | | | of the current line. (bibtex-generate-url-list): Fix docstring.
* (minibuffer-complete-and-exit): Don't replace theStefan Monnier2009-12-06
| | | | | | minibuffer's content with itself. Fold the confirm-after-completion case into the `confirm' case. (completion-pcm-word-delimiters): Add : and / to the delimiters.
* (completion-in-region): Improve docstring.Stefan Monnier2009-12-06
|
* * info-look.el: Add setup for apropos-mode to use emacs-lisp-modeKevin Ryde2009-12-06
| | | | manuals, similar to existing setup for help-mode. (My bug#3913.)