Your message dated Sun, 28 Dec 2008 09:39:19 +0100
with message-id <[email protected]>
and subject line indent-tabs-mode is buffer-local
has caused the Debian Bug report #242025,
regarding BibTeX-mode forcibly uses Tab-sh*t
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
242025: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=242025
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: emacs21-common
Version: 21.3+1-4


When I edit BibTeX-files, it is filled with Tabs. It simply do not obey
these settings:

;;; No tabs in source code.
;;; http://adamspiers.org/computing/why_no_tabs.html
;;; http://www.jwz.org/doc/tabs-vs-spaces.html

(setq c-basic-indent 8)
(setq tab-width 8)
(setq indent-tabs-mode nil)


-- 
Juhapekka "naula" Tolvanen * http colon slash slash iki dot fi slash juhtolv
"Eikä liene rangaistus, jos käymme hetken yhtä matkaa.
Kun hirviöiksi paljastumme, onko hyvät päivät valhetta sittenkään?"      CMX


--- End Message ---
--- Begin Message ---
Since indent-tabs-mode is a buffer-local variable, you need to set it
with setq-default instead of setq:

(setq-default indent-tabs-mode nil)

works for me.  Or set it in bibtex-mode-hook if you only want to set it
for BibTeX files.

Sven


--- End Message ---

Reply via email to