emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

About write-contents-functions in pre-test 24.0.95.1


From: Chming
Subject: About write-contents-functions in pre-test 24.0.95.1
Date: Tue, 17 Apr 2012 08:50:23 -0700

Hello,

I am using the following codes to untabify code in c mode.

;; Untabify when saving
(defun ska-untabify ()
  (save-excursion
    (goto-char (point-min))
    (when (search-forward "\t" nil t)
      (untabify (1- (point)) (point-max)))
    nil))

(defun saving-untabify ()
  (add-hook 'write-contents-functions 'ska-untabify nil t))
(add-hook 'c-mode-common-hook 'saving-untabify)

Right now when I try this on the latest version, it looks like it will
remove all tabs in makefile mode. My understanding is this func only
works on cc-mode. Is that correct to use write-contents-functions in
this way?

Thanks a lot.

Ming



reply via email to

[Prev in Thread] Current Thread [Next in Thread]