| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
| |
before killing the old buffer, since by the time `kill-buffer' is
run so many buffer variables have been set to nil that it may not
behave as expected. (Bug#4061)
|
|
|
|
|
|
|
|
| |
and visiting a file, behave similarly to `kill-buffer' when killing
it, thus reverting to the pre-1.878 behavior; see
http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
for discussion. Also, consult `buffer-file-name' as a variable not
as a function, for consistency with the rest of the code.
|
|
|
|
| |
information, so partial-completion works better.
|
| |
|
| |
|
|
|
|
| |
associated with `archive-mode'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* gnus/mm-util.el (mm-insert-file-contents):
* org/org-html.el (org-export-as-html):
* org/org-docbook.el (org-export-as-docbook):
* textmodes/reftex.el (reftex-get-file-buffer-force):
* progmodes/verilog-mode.el (verilog-batch-execute-func):
* emulation/viper.el (viper-go-away, viper-set-hooks):
* emacs-lisp/re-builder.el (re-builder-unload-function):
* emacs-lisp/bytecomp.el (byte-compile-file):
* ses.el (ses-unload-function):
* hexl.el (hexl-find-file):
* files.el (normal-mode):
* ehelp.el (with-electric-help):
* autoinsert.el (auto-insert-alist):
* arc-mode.el (archive-mode):
Use (default-value 'major-mode) instead of default-major-mode.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(safe-local-variable-values, safe-local-eval-forms): Mark as risky in
the defcustoms.
(auto-mode-alist, ignored-local-variables)
(save-some-buffers-action-alist): Move risky declarations to the
definitions.
(dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
(font-lock-defaults, format-alist, imenu--index-alist)
(imenu-generic-expression, input-method-alist, minor-mode-alist)
(mode-line-buffer-identification, mode-line-client, mode-line-modes)
(mode-line-modified, mode-line-mule-info, mode-line-position)
(mode-line-process, mode-line-remote, outline-level)
(parse-time-rules, rmail-output-file-alist)
(special-display-buffer-names, vc-mode):
Move risky declarations to the relevant files.
|
| |
|
|
|
|
| |
a minor mode, pass it an argument (Bug#4148).
|
|
|
|
|
| |
directory to /. Expand DIR argument before switching to fallback.
Suggested by Kevin Ryde (Bug#2631, Bug#3911).
|
| |
|
| |
|
|
|
|
| |
file/directory-local variables to files-x.el.
|
|
|
|
|
|
|
|
|
|
|
|
| |
(read-file-local-variable, read-file-local-variable-value)
(read-file-local-variable-mode, modify-file-local-variable)
(modify-file-local-variable-prop-line)
(modify-dir-local-variable): New functions.
(add-file-local-variable, delete-file-local-variable)
(add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
(add-dir-local-variable, delete-dir-local-variable)
(copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
(copy-dir-locals-to-file-locals-prop-line): New commands.
|
|
|
|
|
|
| |
* mail/rmail.el (rmail-variables): Use auto-save-include-big-deletions.
* files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16 changes.
|
|
|
|
| |
for toggling mode.
|
|
|
|
| |
(find-file-noselect, insert-file-1): Update for above change.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
(dir-local-variables-alist): New buffer-local variable.
(hack-local-variables-filter): If variable is not dir-local,
i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
because file-local overrides dir-local.
(c-postprocess-file-styles)<declare-function>:
Remove obsolete declaration.
(hack-dir-local-variables): Add dir-local variable/value pair to
`dir-local-variables-alist' and remove duplicates. Doc fix.
|
| |
|
|
|
|
| |
`file-local-variables-alist'.
|
|
|
|
|
| |
* mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
(rmail-retry-ignored-headers): Add more uninteresting fields.
|
|
|
|
| |
Obey confirm-nonexistent-file-or-buffer.
|
| |
|
|
|
|
|
|
|
|
| |
(move-file-to-trash): If trash-directory is nil and
system-move-file-to-trash is unbound, perform freedesktop-style
trashing.
* NEWS: Document change.
|
|
|
|
| |
and `eval' entries. (Bug#3430)
|
|
|
|
| |
optional, since it is always unneeded in the non-file case. (Bug#3577)
|
| |
|
| |
|
|
|
|
| |
directory separator to UNC path case (Bug#3252).
|
|
|
|
|
|
|
| |
(hack-local-variables, dir-locals-read-from-file): Bind
read-circle to nil before reading.
* lread.c (Vread_circle): New variable.
(read1): Disable recursive read if Vread_circle is nil.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
the mtime of the directory-local variables file (Bug#2833).
(dir-locals-set-directory-class): New arg mtime. Store it in
dir-locals-directory-cache.
(dir-locals-find-file): Check cache validity using the mtime.
(dir-locals-read-from-file): Save the file mtime in the cache.
(hack-dir-local-variables): Adapt to new
dir-locals-directory-cache entry format.
|
| |
|
|
|
|
| |
when a UNC mount point is reached.
|
| |
|
|
|
|
| |
(file-modes-symbolic-to-number): Handle empty permissions arg (Bug#2729).
|
|
|
|
|
| |
usable before calling call-process. Suggested by Kevin
Ryde (Bug#2631).
|
|
|
|
| |
packages, as well as Opkg/Ipkg packages.
|
|
|
|
|
|
| |
buffer-file-coding-system-explicit.
(revert-buffer): Check car part of
buffer-file-coding-system-explicit.
|
|
|
|
| |
choice. (Bug#2506)
|
| |
|
| |
|
| |
|
|
|
|
| |
buffer's size. (Bug#2137)
|
|
|
|
| |
server-save-buffers-kill-terminal changed.
|
| |
|