aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/files.el
Commit message (Collapse)AuthorAgeFilesLines
...
* (make-auto-save-file-name): Specify # as suffix in the non-file-visiting case.Richard M. Stallman2002-04-281-10/+11
|
* (after-find-file): Use %s to output MSG.Richard M. Stallman2002-04-231-1/+1
|
* (auto-mode-alist): .f95 files in f90-mode.Glenn Morris2002-04-211-0/+1
|
* (auto-save-file-name-transforms): Doc string addition - no effect forGlenn Morris2002-04-201-8/+26
| | | | | | | MS-DOS systems without long file names. Add third element for uniquifying filenames. (make-auto-save-file-name): Make a unique filename if indicated by new element of auto-save-file-name-transforms.
* (file-name-non-special): Don't mangle the 0'th arg and theStefan Monnier2002-04-191-8/+3
| | | | return value of file-name-completion and file-name-all-completions.
* (file-name-non-special): Handle return value of t fromAndreas Schwab2002-04-111-1/+1
| | | | `file-name-completion'.
* (display-time-string): Fix last change.Pavel Janík2002-04-081-1/+1
|
* (display-time-string-forms): Mark as risky.Richard M. Stallman2002-04-061-0/+1
|
* (mode-line-format, mode-line-modified)Richard M. Stallman2002-04-041-1/+7
| | | | | | (mode-line-mule-info, mode-line-buffer-identification) (mode-line-modes, mode-line-position): Explicitly mark as risky. (hack-one-local-variable): Don't recognize "mode-line-..." as risky.
* (hack-one-local-variable): Clear text props from string value.Richard M. Stallman2002-04-021-0/+5
|
* (file-expand-wildcards): Use save-match-data.Richard M. Stallman2002-04-011-31/+33
| | | | (format-alist): Mark as risky.
* (auto-save-file-name-transforms): Fix last change.Eli Zaretskii2002-03-301-1/+1
|
* (auto-save-file-name-transforms): Don't run "\\2" via expand-file-name.Eli Zaretskii2002-03-291-1/+3
|
* Mark many more variables as risky.Richard M. Stallman2002-03-281-2/+24
| | | | | (hack-one-local-variable): Recognize several additional patterns as risky.
* (list-directory): Set default-directory at the end.Richard M. Stallman2002-03-181-6/+10
|
* (save-buffers-kill-emacs): Also check for active serverKim F. Storm2002-03-171-6/+4
| | | | | processes. Use process-query-on-exit-flag. Only list processes which has the query-on-exit flag set in connection with user query.
* (load-completion): New function.Stefan Monnier2002-03-161-1/+20
| | | | (load-library): Use it.
* (make-auto-save-file-name): Make sure the produced fileEli Zaretskii2002-03-061-23/+46
| | | | | name does not contain characters that are invalid for DOS/Windows filesystems.
* (make-auto-save-file-name): Use make-temp-file.Richard M. Stallman2002-03-031-7/+8
|
* (file-name-non-special): Add special handling forRichard M. Stallman2002-02-061-5/+11
| | | | | file-name-sans-versions, file-name-completion, and file-name-all-completions.
* (basic-save-buffer-2): Ignore file-error in delete-file.Richard M. Stallman2002-01-241-1/+3
|
* (find-file-noselect): Don't consider a buffer asEli Zaretskii2002-01-121-2/+6
| | | | visiting a file literally if it is in hexl-mode.
* (basic-save-buffer): Undo previous change.Richard M. Stallman2002-01-041-8/+3
|
* (basic-save-buffer): If a before-write hook displaysRichard M. Stallman2001-12-301-4/+9
| | | | an echo area message, pause before calling basic-save-buffer-1.
* (directory-free-space-program): MentionEli Zaretskii2001-12-211-33/+46
| | | | | | file-system-info in the doc string. (get-free-disk-space): New function; code moved from insert-directory. (insert-directory): Call get-free-disk-space to get the amount of free space.
* (directory-free-space-program): New variable.Richard M. Stallman2001-12-181-17/+43
| | | | | | | | | (directory-free-space-args): New variable. (insert-directory): Use those two variables for getting free space. Use file-system-info instead, if that is defined. (font-lock-defaults): Add risky-local-variables prop. (hack-one-local-variable): Treat various font-lock variables as risky.
* (set-auto-mode): Fix previous change.Richard M. Stallman2001-12-141-16/+15
|
* (set-auto-mode-1): New subroutine, broken out of set-auto-mode.Richard M. Stallman2001-12-121-42/+51
| | | | (set-auto-mode, hack-local-variables-prop-line): Use that.
* (save-abbrevs, save-some-buffers): Don't ask the userEli Zaretskii2001-12-041-2/+4
| | | | before saving abbrevs if `save-abbrevs' has the value `silently'.
* (insert-directory): If the df output does not look right,Richard M. Stallman2001-12-031-76/+92
| | | | don't try to use it. Other cleanups in overall code structure.
* (temporary-file-directory): Use defcustom.Richard M. Stallman2001-11-241-21/+25
| | | | | | (small-temporary-file-directory): Likewise. (normal-backup-enable-predicate): Move down in file after definition of temporary-file-directory.
* (temporary-file-directory)Richard M. Stallman2001-11-211-20/+20
| | | | (small-temporary-file-directory): Definitions moved up.
* * files.el (auto-save-file-name-transforms): Put remote files inKai Großjohann2001-11-211-3/+5
| | | | temporary-file-directory rather than /tmp.
* (save-abbrevs): Default value is t.Richard M. Stallman2001-11-111-3/+2
|
* (file-newest-backup): Don't pass backup file nameRichard M. Stallman2001-11-011-2/+1
| | | | thru file-name-sans-versions, because it never has version numbers.
* (find-file-noselect): Offer to change buffer-read-onlyRichard M. Stallman2001-11-011-3/+10
| | | | | | only when the file's read-only status has changed from before as well as disagreeing with the buffer's current status. (buffer-file-read-only): New var, local in all buffers.
* (find-backup-file-name): Use make-backup-file-name.Richard M. Stallman2001-10-301-1/+1
|
* (file-name-sans-extension, file-name-extension): Don'tEli Zaretskii2001-10-221-4/+8
| | | | count the leading dots in file names as signaling an extension.
* (auto-mode-alist): Associate .indent.pro withEli Zaretskii2001-10-191-0/+1
| | | | | Fundamental mode. Suggested by Samuel Padgett <[email protected]>.
* (find-file-noselect): If file's read-only status hasGerd Moellmann2001-10-051-0/+13
| | | | | changed on disk, ask if buffer's read-only status should be changed, unless NOWARN is set.
* (make-auto-save-file-name): If long file names are notEli Zaretskii2001-09-131-1/+6
| | | | | supported, truncate the file name to DOS 8+3 limits before generating an auto-save file name from it.
* (auto-mode-alist): Use nroff-mode for files endingGerd Moellmann2001-07-251-1/+1
| | | | in `.9'. From Assar Westerlund <[email protected]>.
* (auto-mode-alist): Add configure.ac (autoconf).Eli Zaretskii2001-06-231-1/+1
|
* (switch-to-buffer-other-window, switch-to-buffer-other-frame): Add an xrefEli Zaretskii2001-05-171-2/+8
| | | | to display-buffer in the doc string.
* (auto-mode-alist): Add *.perl and fix the *.<rev> case.Stefan Monnier2001-05-111-11/+13
|
* (backup-directory-alist): Fix typo.Andreas Schwab2001-03-301-1/+1
|
* (insert-file-contents-literally): BindDave Love2001-03-021-2/+3
| | | | | inhibit-file-name-handlers and inhibit-file-name-operation, not jka-compr-compression-info-list.
* (save-buffer): Don't give message if (buffer-file-name)Gerd Moellmann2001-01-311-3/+4
| | | | returns nil.
* (confirm-kill-emacs): Doc fix.Eli Zaretskii2001-01-291-1/+3
|
* (confirm-kill-emacs): New user-option.Gerd Moellmann2001-01-101-0/+10
| | | | | (save-buffers-kill-emacs): Ask for final confirmation before killing Emacs.