Mercurial > emacs
diff lisp/files.el @ 13326:4e1b078121ad
(set-visited-file-name, basic-save-buffer):
Set buffer-file-number consistently with find-file-noselect.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 29 Oct 1995 20:23:42 +0000 |
parents | c4f93bb943b7 |
children | 1bd9f5d576ce |
line wrap: on
line diff
--- a/lisp/files.el Sun Oct 29 20:22:55 1995 +0000 +++ b/lisp/files.el Sun Oct 29 20:23:42 1995 +0000 @@ -1375,7 +1375,7 @@ (setq buffer-file-name buffer-file-truename)))) (setq buffer-file-number (if filename - (nth 10 (file-attributes buffer-file-name)) + (nthcdr 10 (file-attributes buffer-file-name)) nil))) ;; write-file-hooks is normally used for things like ftp-find-file ;; that visit things that are not local files as if they were files. @@ -1782,7 +1782,8 @@ ;; If a hook returned t, file is already "written". ;; Otherwise, write it the usual way now. (setq setmodes (basic-save-buffer-1))) - (setq buffer-file-number (nth 10 (file-attributes buffer-file-name))) + (setq buffer-file-number + (nthcdr 10 (file-attributes buffer-file-name))) (if setmodes (condition-case () (set-file-modes buffer-file-name setmodes)