This is a CC mode thing, not a JDE thing. The answer depends on the version
of CC mode that you use. If you don't have any newer versions installed,
the version that comes with emacs 20.x is 5.25, and in that case, you should
consult the variables
c-hanging-comment-ender-p
c-hanging-comment-starter-p
In CC mode 5.27 (the latest), those variables no longer exist and the parser
determines from the context which to use automatically.
For more info see http://cc-mode.sourceforge.net/
<http://cc-mode.sourceforge.net/>
/Nick
-----Original Message-----
From: David Cramer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 31, 2001 5:13 PM
To: [EMAIL PROTECTED]
Subject: fill-paragraph and */
Hi there,
I haven't set up the JDE yet (though I use and love jdok.el), but I have a
question that one of you can probably answer. In emacs (20.6.1 on NT) when I
do M-q (fill-paragraph) on a Javadoc comment, it brings the close comment
mark up to the previous line. I.e. it turns this:
/**
* Foobar foody foo bar. Yadda yadda yadda yadda.
*
*@param snafu wooga
*/
into this:
/**
* Foobar foody foo bar. Yadda yadda
* yadda yadda.
*
*@param snafu wooga */
Is there a setting to make it know not to do that? I've poked around with
some of the fill mode settings, but couldn't figure it out.
Thanks,
David