unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Ming <viadoo@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: About untabify in latest pre-test 24.0.95.1
Date: Mon, 16 Apr 2012 14:24:07 -0700 (PDT)	[thread overview]
Message-ID: <16959090.798.1334611447645.JavaMail.geo-discussion-forums@ynmf4> (raw)

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.


                 reply	other threads:[~2012-04-16 21:24 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=16959090.798.1334611447645.JavaMail.geo-discussion-forums@ynmf4 \
    --to=viadoo@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).