Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
16935765
Commit
16935765
authored
Aug 11, 1997
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(c-lineup-java-throws): Change the `when' clause to an `if-progn'.
parent
5d7e8345
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
lisp/progmodes/cc-align.el
lisp/progmodes/cc-align.el
+5
-4
No files found.
lisp/progmodes/cc-align.el
View file @
16935765
...
...
@@ -7,7 +7,7 @@
;; 1985 Richard M. Stallman
;; Maintainer: cc-mode-help@python.org
;; Created: 22-Apr-1997 (split from cc-mode.el)
;; Version: 5.1
4
;; Version: 5.1
5
;; Keywords: c languages oop
;; This file is part of GNU Emacs.
...
...
@@ -146,9 +146,10 @@
(
looking-at
"throws[ \t\n]"
))
(
forward-word
1
)
(
skip-chars-forward
" \t"
)
(
when
(
eolp
)
(
back-to-indentation
)
(
setq
extra
c-basic-offset
)))
(
if
(
eolp
)
(
progn
(
back-to-indentation
)
(
setq
extra
c-basic-offset
))))
(
t
(
goto-char
iopl
)))
(
+
(
-
(
current-column
)
langelem-col
)
extra
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment