comparison lisp/cc-mode/cc-langs.el @ 183:e121b013d1f0 r20-3b18

Import from CVS: tag r20-3b18
author cvs
date Mon, 13 Aug 2007 09:54:23 +0200
parents bfd6434d15b3
children b405438285a2
comparison
equal deleted inserted replaced
182:f07455f06202 183:e121b013d1f0
5 ;; Authors: 1992-1997 Barry A. Warsaw 5 ;; Authors: 1992-1997 Barry A. Warsaw
6 ;; 1987 Dave Detlefs and Stewart Clamen 6 ;; 1987 Dave Detlefs and Stewart Clamen
7 ;; 1985 Richard M. Stallman 7 ;; 1985 Richard M. Stallman
8 ;; Maintainer: cc-mode-help@python.org 8 ;; Maintainer: cc-mode-help@python.org
9 ;; Created: 22-Apr-1997 (split from cc-mode.el) 9 ;; Created: 22-Apr-1997 (split from cc-mode.el)
10 ;; Version: 5.15 10 ;; Version: 5.16
11 ;; Keywords: c languages oop 11 ;; Keywords: c languages oop
12 12
13 ;; This file is part of GNU Emacs. 13 ;; This file is part of GNU Emacs.
14 14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify 15 ;; GNU Emacs is free software; you can redistribute it and/or modify
176 (make-variable-buffer-local 'c-auto-newline) 176 (make-variable-buffer-local 'c-auto-newline)
177 177
178 ;; Internal auto-newline/hungry-delete designation string for mode line. 178 ;; Internal auto-newline/hungry-delete designation string for mode line.
179 (defvar c-auto-hungry-string nil) 179 (defvar c-auto-hungry-string nil)
180 (make-variable-buffer-local 'c-auto-hungry-string) 180 (make-variable-buffer-local 'c-auto-hungry-string)
181
182 ;; Buffer local language-specific comment style flag.
183 (defvar c-double-slash-is-comments-p nil)
184 (make-variable-buffer-local 'c-double-slash-is-comments-p)
185 181
186 ;; Non-nil means K&R style argument declarations are valid. 182 ;; Non-nil means K&R style argument declarations are valid.
187 (defvar c-recognize-knr-p t) 183 (defvar c-recognize-knr-p t)
188 (make-variable-buffer-local 'c-recognize-knr-p) 184 (make-variable-buffer-local 'c-recognize-knr-p)
189 185