# HG changeset patch # User Juanma Barranquero # Date 1263472574 -3600 # Node ID e9774faca8a4226d81b6ea8ef92903b65402e703 # Parent 1562bc1aa08079a2781993ae260bce40a8068cbe * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete. (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore. diff -r 1562bc1aa080 -r e9774faca8a4 lisp/ChangeLog --- a/lisp/ChangeLog Thu Jan 14 20:51:58 2010 +0900 +++ b/lisp/ChangeLog Thu Jan 14 13:36:14 2010 +0100 @@ -1,3 +1,8 @@ +2010-01-14 Stephen Leake + + * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete. + (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore. + 2010-01-14 Glenn Morris * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312) diff -r 1562bc1aa080 -r e9774faca8a4 lisp/progmodes/ada-mode.el --- a/lisp/progmodes/ada-mode.el Thu Jan 14 20:51:58 2010 +0900 +++ b/lisp/progmodes/ada-mode.el Thu Jan 14 13:36:14 2010 +0100 @@ -229,11 +229,13 @@ (const ada-no-auto-case)) :group 'ada) -;; FIXME If this is not something required by the ada language, this -;; should be removed. (defcustom ada-clean-buffer-before-saving t "*Non-nil means remove trailing spaces and untabify the buffer before saving." :type 'boolean :group 'ada) +(make-obsolete-variable 'ada-clean-buffer-before-saving + "use the `write-file-functions' hook." + "23.2") + (defcustom ada-indent 3 "*Size of Ada indentation. @@ -1303,14 +1305,6 @@ (set-syntax-table ada-mode-syntax-table) - (if ada-clean-buffer-before-saving - (progn - ;; remove all spaces at the end of lines in the whole buffer. - (add-hook 'local-write-file-hooks 'delete-trailing-whitespace) - ;; convert all tabs to the correct number of spaces. - (add-hook 'local-write-file-hooks - (lambda () (untabify (point-min) (point-max)))))) - (set (make-local-variable 'skeleton-further-elements) '((< '(backward-delete-char-untabify (min ada-indent (current-column))))))