comparison lisp/progmodes/cc-langs.el @ 89966:d8411455de48

Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-32 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-486 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-487 Tweak permissions * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-488 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-489 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-490 Update from CVS: man/fixit.texi (Spelling): Fix typo. * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-491 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-494 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-495 Update from CVS: Add missing lisp/mh-e files * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-496 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-499 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-500 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-513 Update from CVS
author Miles Bader <miles@gnu.org>
date Fri, 27 Aug 2004 07:00:34 +0000
parents 68c22ea6027c b7446b6f097d
children 58db929d96c6
comparison
equal deleted inserted replaced
89965:5e9097d1ad99 89966:d8411455de48
372 "Regexp matching the operators that join symbols to fully qualified 372 "Regexp matching the operators that join symbols to fully qualified
373 identifiers, or nil in languages that don't have such things. Does 373 identifiers, or nil in languages that don't have such things. Does
374 not contain a \\| operator at the top level." 374 not contain a \\| operator at the top level."
375 t nil 375 t nil
376 c++ "::" 376 c++ "::"
377 ;; Java has "." to concatenate identifiers but it's also used for
378 ;; normal indexing. There's special code in the Java font lock
379 ;; rules to fontify qualified identifiers based on the standard
380 ;; naming conventions. We still define "." here to make
381 ;; `c-forward-name' move over as long names as possible which is
382 ;; necessary to e.g. handle throws clauses correctly.
377 java "\\." 383 java "\\."
378 idl "::" 384 idl "::"
379 pike "\\(::\\|\\.\\)") 385 pike "\\(::\\|\\.\\)")
380 (c-lang-defvar c-opt-identifier-concat-key 386 (c-lang-defvar c-opt-identifier-concat-key
381 (c-lang-const c-opt-identifier-concat-key) 387 (c-lang-const c-opt-identifier-concat-key)