aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2013-02-09 18:20:29 +0200
committerEli Zaretskii2013-02-09 18:20:29 +0200
commit2d0504232eab9deb2b09d47d39ceb76a369dc922 (patch)
tree6240cb4b49996f44fa07b46267eeb5da86af85cd
parent8549f9e89bd9288c4c709d183a5bf8f07dbeed3d (diff)
downloademacs-2d0504232eab9deb2b09d47d39ceb76a369dc922.tar.gz
emacs-2d0504232eab9deb2b09d47d39ceb76a369dc922.zip
subr.el (buffer-file-type, default-buffer-file-type): Remove.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/subr.el10
2 files changed, 2 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0712f9a1fc8..5a9af8c42a0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12013-02-09 Eli Zaretskii <eliz@gnu.org> 12013-02-09 Eli Zaretskii <eliz@gnu.org>
2 2
3 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
4
3 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference 5 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
4 buffer-file-type. 6 buffer-file-type.
5 7
diff --git a/lisp/subr.el b/lisp/subr.el
index 31cbb9a0a8a..db2b6a8eaad 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1229,7 +1229,6 @@ is converted into a string by expressing it in decimal."
1229(make-obsolete-variable 'default-scroll-down-aggressively 'scroll-down-aggressively "23.2") 1229(make-obsolete-variable 'default-scroll-down-aggressively 'scroll-down-aggressively "23.2")
1230(make-obsolete-variable 'default-fill-column 'fill-column "23.2") 1230(make-obsolete-variable 'default-fill-column 'fill-column "23.2")
1231(make-obsolete-variable 'default-cursor-type 'cursor-type "23.2") 1231(make-obsolete-variable 'default-cursor-type 'cursor-type "23.2")
1232(make-obsolete-variable 'default-buffer-file-type 'buffer-file-type "23.2")
1233(make-obsolete-variable 'default-cursor-in-non-selected-windows 'cursor-in-non-selected-windows "23.2") 1232(make-obsolete-variable 'default-cursor-in-non-selected-windows 'cursor-in-non-selected-windows "23.2")
1234(make-obsolete-variable 'default-buffer-file-coding-system 'buffer-file-coding-system "23.2") 1233(make-obsolete-variable 'default-buffer-file-coding-system 'buffer-file-coding-system "23.2")
1235(make-obsolete-variable 'default-major-mode 'major-mode "23.2") 1234(make-obsolete-variable 'default-major-mode 'major-mode "23.2")
@@ -2622,15 +2621,6 @@ When the hook runs, the temporary buffer is current.
2622This hook is normally set up with a function to put the buffer in Help 2621This hook is normally set up with a function to put the buffer in Help
2623mode.") 2622mode.")
2624 2623
2625(defvar-local buffer-file-type nil
2626 "Non-nil if the visited file is a binary file.
2627This variable is meaningful on MS-DOG and MS-Windows.
2628On those systems, it is automatically local in every buffer.
2629On other systems, this variable is normally always nil.
2630
2631WARNING: This variable is obsolete and will disappear Real Soon Now.
2632Don't use it!")
2633
2634;; The `assert' macro from the cl package signals 2624;; The `assert' macro from the cl package signals
2635;; `cl-assertion-failed' at runtime so always define it. 2625;; `cl-assertion-failed' at runtime so always define it.
2636(put 'cl-assertion-failed 'error-conditions '(error)) 2626(put 'cl-assertion-failed 'error-conditions '(error))