diff options
author | Glenn Morris <rgm@gnu.org> | 2009-07-01 02:58:52 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-07-01 02:58:52 +0000 |
commit | b0d5b05b13bce863dbc278127baf36162e2dbebd (patch) | |
tree | 6d42f5fa0b25d6435a620b0381391a02365fd965 /lisp/progmodes/f90.el | |
parent | 99061dfcf68b52602e134fdb1a0bd3417546f7a8 (diff) | |
download | emacs-b0d5b05b13bce863dbc278127baf36162e2dbebd.tar.gz |
Evangelos Evangelou <vangelis at email.unc.edu> (tiny change)
(f90-no-break-re): Add "(/" and "/)". (Bug#3730)
Diffstat (limited to 'lisp/progmodes/f90.el')
-rw-r--r-- | lisp/progmodes/f90.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 9048b7b490c..bc57db13fda 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -823,7 +823,7 @@ Can be overridden by the value of `font-lock-maximum-decoration'.") "Regexp matching a CLASS/TYPE IS statement.") (defconst f90-no-break-re - (regexp-opt '("**" "//" "=>" ">=" "<=" "==" "/=") 'paren) + (regexp-opt '("**" "//" "=>" ">=" "<=" "==" "/=" "(/" "/)") 'paren) "Regexp specifying where not to break lines when filling. This regexp matches certain tokens comprised entirely of characters matching the regexp `f90-break-delimiters' that should |