comparison lisp/textmodes/bibtex-style.el @ 80261:4af0bb174714

* textmodes/css-mode.el (css-indent-offset, css-electric-keys): * textmodes/bibtex-style.el (bibtex-style-indent-basic): * progmodes/verilog-mode.el (verilog-mode): * net/socks.el (socks): * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sat, 01 Mar 2008 19:16:02 +0000
parents dc100f64b2b7
children d999f30304bc
comparison
equal deleted inserted replaced
80260:bcd82d955672 80261:4af0bb174714
93 (save-excursion (indent-line-to indent)) 93 (save-excursion (indent-line-to indent))
94 (indent-line-to indent)))) 94 (indent-line-to indent))))
95 95
96 (defcustom bibtex-style-indent-basic 2 96 (defcustom bibtex-style-indent-basic 2
97 "Basic amount of indentation to use in BibTeX Style mode." 97 "Basic amount of indentation to use in BibTeX Style mode."
98 :type 'integer) 98 :version "22.2"
99 :type 'integer
100 :group 'bibtex)
99 101
100 (defun bibtex-style-calculate-indentation (&optional virt) 102 (defun bibtex-style-calculate-indentation (&optional virt)
101 (or 103 (or
102 ;; Stick the first line at column 0. 104 ;; Stick the first line at column 0.
103 (and (= (point-min) (line-beginning-position)) 0) 105 (and (= (point-min) (line-beginning-position)) 0)