diff options
| author | Richard M. Stallman | 1998-03-08 06:51:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-03-08 06:51:26 +0000 |
| commit | 717d3be71d714bb8cb355d6d1db69b2991bcf46a (patch) | |
| tree | a9f5d3bf94f0d73552d3facc03f7b07186e9d700 /lisp/progmodes | |
| parent | f23da29ac2a085c1dcc4ab258aaa49e6e0a01a24 (diff) | |
| download | emacs-717d3be71d714bb8cb355d6d1db69b2991bcf46a.tar.gz emacs-717d3be71d714bb8cb355d6d1db69b2991bcf46a.zip | |
(c-Java-javadoc-paragraph-start): New variable for use in c-fill-paragraph.
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/cc-langs.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el index ec9308b3cc3..6aac38aa532 100644 --- a/lisp/progmodes/cc-langs.el +++ b/lisp/progmodes/cc-langs.el | |||
| @@ -27,7 +27,6 @@ | |||
| 27 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 27 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 28 | ;; Boston, MA 02111-1307, USA. | 28 | ;; Boston, MA 02111-1307, USA. |
| 29 | 29 | ||
| 30 | (require 'cc-defs) | ||
| 31 | 30 | ||
| 32 | 31 | ||
| 33 | (require 'cc-defs) | 32 | (require 'cc-defs) |
| @@ -163,6 +162,10 @@ | |||
| 163 | (defconst c-Java-defun-prompt-regexp | 162 | (defconst c-Java-defun-prompt-regexp |
| 164 | "^[ \t]*\\(\\(\\(public\\|protected\\|private\\|const\\|abstract\\|synchronized\\|final\\|static\\|threadsafe\\|transient\\|native\\|volatile\\)\\s-+\\)*\\(\\(\\([[a-zA-Z][][_$.a-zA-Z0-9]*[][_$.a-zA-Z0-9]+\\|[[a-zA-Z]\\)\\s-*\\)\\s-+\\)\\)?\\(\\([[a-zA-Z][][_$.a-zA-Z0-9]*\\s-+\\)\\s-*\\)?\\([_a-zA-Z][^][ \t:;.,{}()=]*\\|\\([_$a-zA-Z][_$.a-zA-Z0-9]*\\)\\)\\s-*\\(([^);{}]*)\\)?\\([] \t]*\\)\\(\\s-*\\<throws\\>\\s-*\\(\\([_$a-zA-Z][_$.a-zA-Z0-9]*\\)[, \t\n\r\f]*\\)+\\)?\\s-*") | 163 | "^[ \t]*\\(\\(\\(public\\|protected\\|private\\|const\\|abstract\\|synchronized\\|final\\|static\\|threadsafe\\|transient\\|native\\|volatile\\)\\s-+\\)*\\(\\(\\([[a-zA-Z][][_$.a-zA-Z0-9]*[][_$.a-zA-Z0-9]+\\|[[a-zA-Z]\\)\\s-*\\)\\s-+\\)\\)?\\(\\([[a-zA-Z][][_$.a-zA-Z0-9]*\\s-+\\)\\s-*\\)?\\([_a-zA-Z][^][ \t:;.,{}()=]*\\|\\([_$a-zA-Z][_$.a-zA-Z0-9]*\\)\\)\\s-*\\(([^);{}]*)\\)?\\([] \t]*\\)\\(\\s-*\\<throws\\>\\s-*\\(\\([_$a-zA-Z][_$.a-zA-Z0-9]*\\)[, \t\n\r\f]*\\)+\\)?\\s-*") |
| 165 | 164 | ||
| 165 | ;; Regexp describing Javadoc markup that always starts paragraphs. | ||
| 166 | (defconst c-Java-javadoc-paragraph-start | ||
| 167 | "@\\(author\\|exception\\|param\\|return\\|see\\|version\\)") | ||
| 168 | |||
| 166 | 169 | ||
| 167 | 170 | ||
| 168 | ;; internal state variables | 171 | ;; internal state variables |