- 22 Nov, 2008 32 commits
-
-
Chong Yidong authored
-
Juri Linkov authored
"file.txt" to more reasonable default file name value "~/.emacs".
-
Juri Linkov authored
-
Juri Linkov authored
Fix docstring - change "during `compile'" to "during compilation".
-
Juri Linkov authored
from `non-nil' to `t'. Add `dwim' option.
-
Juri Linkov authored
-
Juri Linkov authored
`isearch-update' and running the `isearch-mode-hook' to call `isearch-update' with Isearch parameters set in this hook.
-
Juri Linkov authored
option `dwim'. Change non-dwim option from `dired-filename' to `t'. Doc fix. (dired-isearch-filenames-setup): Run filename Isearch only when dired-isearch-filenames is t or dired-isearch-filenames is `dwim' and the text property `dired-filename' at point is non-nil. In this case also set isearch-message-prefix-add to "filename ". (dired-isearch-filenames-end): Set isearch-message-prefix-add to nil. (dired-isearch-filenames, dired-isearch-filenames-regexp): Don't let-bind isearch-message-prefix-add since this is done now in dired-isearch-filenames-setup.
-
Juri Linkov authored
".dir-locals.el". Rename `define-project-bindings' to `dir-locals-set-class-variables'. Rename `set-directory-project' to `dir-locals-set-directory-class'.
-
Juri Linkov authored
Rename set-directory-project to dir-locals-set-directory-class. Rename define-project-bindings to dir-locals-set-class-variables.
-
Juri Linkov authored
`dir-name'. Move `(or dir-name name)' to let-binding of `name'. (hack-local-variables-filter): Rename arg `project' to `dir-name'. (hack-local-variables): Rename call of `hack-project-variables' to `hack-dir-local-variables'. Change error text to "Directory-local variables error". (dir-locals-class-alist): Rename from `project-class-alist'. (dir-locals-directory-alist): Rename from `project-directory-alist'. (dir-locals-get-class-variables): Rename from `project-get-alist'. (dir-locals-collect-mode-variables): Rename from `project-collect-bindings-from-alist'. Rename arg `mode-alist' to `mode-variables', and arg `settings' to `variables'. (dir-locals-collect-variables): Rename from `project-collect-binding-list'. Rename arg `binding-list' to `class-variables', and arg `settings' to `variables'. (dir-locals-set-directory-class): Rename from `set-directory-project'. (dir-locals-set-class-variables): Rename from `define-project-bindings'. Rename arg `settings' to `variables'. (dir-locals-file): New defconst. (dir-locals-find-file): Rename from `project-find-settings-file'. Use `dir-locals-file'. Rename let-bound `settings' to `locals-file', and `pda' to `dir-elt'. (dir-locals-read-from-file): Rename from `project-define-from-project-file'. Rename arg `settings-file' to `file'. Rename let-bound `list' to `variables'. (hack-dir-local-variables): Rename from `hack-project-variables'. Rename let-bound `settings' to `variables-file', `root-dir' to `dir-name', and `bindings' to `variables'.
-
Eli Zaretskii authored
-
Eli Zaretskii authored
-
Eli Zaretskii authored
(Scanning Charsets, Translation of Characters): Update for Emacs 23. (Chars and Bytes, Splitting Characters): Sections removed.
-
Lute Kamstra authored
-
Lute Kamstra authored
* basic.texi (Moving Point): Mention the use of a numeric prefix argument with goto-line and refer to Select Buffer for the use of a plain prefix argument.
-
Lute Kamstra authored
-
Eli Zaretskii authored
(recompile): Depend on compile-first.
-
Eli Zaretskii authored
-
Martin Rudalics authored
Rename buffer argument to buffer-or-name. Reword and mention new option confirm-nonexistent-file-or-buffer in doc-string.
-
Martin Rudalics authored
confirm-nonexistent-file-or-buffer in doc-string.
-
Michael Kifer authored
* viper.texi (viper-translate-all-ESC-keysequences): description removed.
-
Michael Kifer authored
* viper.el: date change. * viper-cmd.el (viper-envelop-ESC-key): viper-translate-all-ESC-keysequences is now a function. * viper-init (viper-translate-all-ESC-keysequences): make this variable
-
Stefan Monnier authored
Use buffer-file-truename to handle symlinks in any part of the filename.
-
Glenn Morris authored
-
Glenn Morris authored
(vc-mtn-program): Rename from vc-mtn-command, for consistency with other backends. Keep old name as alias. Update callers. Make it a defcustom. (vc-mtn-diff): Give it a doc string. Apply diff switches.
-
Glenn Morris authored
consistency with other backends. Make it a defcustom. (vc-arch-command, vc-arch-trim-revlib): Adapt for above change.
-
Glenn Morris authored
(vc-hg-state, vc-hg-working-revision, vc-hg-command): Use vc-hg-program rather than hard-coded "hg".
-
Glenn Morris authored
(vc-svn-program): Move defcustom to start. (vc-svn-create-repo, vc-svn-modify-change-comment): Use vc-svn-program rather than hard-coded "svn".
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
(add_regex): Pass correct length to re_compile_pattern.
-
- 21 Nov, 2008 8 commits
-
-
Stefan Monnier authored
rather than use mm-with-unibyte-current-buffer which does a lot more. (message-send-mail-partially): Don't bother with mm-with-unibyte-current-buffer since it's already been made unibyte by message-send-mail.
-
Stefan Monnier authored
-
Stefan Monnier authored
(quail-completion-1, quail-completion-list-translations) (quail-insert-decode-map): Use it to improve alignment. (quail-build-decode-map): Don't ignore latin-1 chars. (quail-help): Increase the max decode-map size so that even the TeX map gets printed.
-
Stefan Monnier authored
Signal error for invalid bookmark. (bookmark-get-bookmark-record): Undo last change. (bookmark-store, bookmark-delete): Use new arg `noerror'.
-
Stefan Monnier authored
Suggested by Toru TSUNEYOSHI.
-
Chong Yidong authored
(byte-optimize-plus): Don't call byte-optimize-delay-constants-math (bug#1334). Use byte-optimize-predicate to optimize constants. (byte-optimize-minus): Don't call byte-optimize-delay-constants-math. Remove zero arguments first if possible. Call byte-optimize-predicate to optimize constants. (byte-optimize-multiply): Remove optimizations for arguments of 0 and 2, which may be inaccurate. Optimize (* x -1) to (- x). Call byte-optimize-predicate. (byte-optimize-divide): Leave runtime errors unchanged. Optimize (/ x 1) to (+ x 0). Remove optimizations for arguments of 0 and 2.0, which may be inaccurate. Call byte-optimize-predicate.
-
Chong Yidong authored
(byte-optimize-plus): Don't call byte-optimize-delay-constants-math (bug#1334). Use byte-optimize-predicate to optimize constants. (byte-optimize-minus): Don't call byte-optimize-delay-constants-math. Remove zero arguments first if possible. Call byte-optimize-predicate to optimize constants. (byte-optimize-multiply): Remove optimizations for arguments of 0 and 2, which may be inaccurate. Optimize (* x -1) to (- x). Call byte-optimize-predicate. (byte-optimize-divide): Leave runtime errors unchanged. Optimize (/ x 1) to (+ x 0). Remove optimizations for arguments of 0 and 2.0, which may be inaccurate. Call byte-optimize-predicate.
-
Eli Zaretskii authored
(all, info): Depend on `misc'.
-