comparison lisp/textmodes/css-mode.el @ 85686:a55a536ce0db

* emulation/pc-select.el (next-line-mark, next-line-nomark) (previous-line-mark, previous-line-nomark): Wrap with-no-warnings around uses of previous-line and next-line. * diff.el (diff-old-file, diff-new-file, diff-extra-args): New defvars. * textmodes/css-mode.el (comment-continue): * net/browse-url.el (url-handler-regexp): * progmodes/idlw-help.el (idlwave-system-routines): Pacify byte-compiler.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 26 Oct 2007 22:24:14 +0000
parents 5039706521c9
children b210bba3f477
comparison
equal deleted inserted replaced
85685:1989e8bb5c7b 85686:a55a536ce0db
274 (let ((fc (make-char-table 'auto-fill-chars))) 274 (let ((fc (make-char-table 'auto-fill-chars)))
275 (set-char-table-parent fc auto-fill-chars) 275 (set-char-table-parent fc auto-fill-chars)
276 (dolist (c css-electric-keys) 276 (dolist (c css-electric-keys)
277 (aset fc c 'indent-according-to-mode)) 277 (aset fc c 'indent-according-to-mode))
278 (set (make-local-variable 'auto-fill-chars) fc)))) 278 (set (make-local-variable 'auto-fill-chars) fc))))
279
280 (defvar comment-continue)
279 281
280 (defun css-fill-paragraph (&optional justify) 282 (defun css-fill-paragraph (&optional justify)
281 (save-excursion 283 (save-excursion
282 (let ((ppss (syntax-ppss)) 284 (let ((ppss (syntax-ppss))
283 (eol (line-end-position))) 285 (eol (line-end-position)))