unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* About untabify in latest pre-test 24.0.95.1
@ 2012-04-16 21:24 Ming
  0 siblings, 0 replies; only message in thread
From: Ming @ 2012-04-16 21:24 UTC (permalink / raw)
  To: help-gnu-emacs

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, it looks like it will remove all tabs in makefile. My understanding is this func only works on cc-mode. Is that correct?

Thanks a lot.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-04-16 21:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-16 21:24 About untabify in latest pre-test 24.0.95.1 Ming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).