diff options
| -rw-r--r-- | lisp/progmodes/ada-mode.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el index 6e7af70a683..a08e31e2016 100644 --- a/lisp/progmodes/ada-mode.el +++ b/lisp/progmodes/ada-mode.el | |||
| @@ -257,7 +257,7 @@ Note that indentation is calculated only if `ada-indent-comment-as-code' is t. | |||
| 257 | 257 | ||
| 258 | For instance: | 258 | For instance: |
| 259 | A := 1; -- A multi-line comment | 259 | A := 1; -- A multi-line comment |
| 260 | -- aligned if ada-indent-align-comments is t" | 260 | -- aligned if `ada-indent-align-comments' is t" |
| 261 | :type 'boolean :group 'ada) | 261 | :type 'boolean :group 'ada) |
| 262 | 262 | ||
| 263 | (defcustom ada-indent-comment-as-code t | 263 | (defcustom ada-indent-comment-as-code t |
| @@ -4163,8 +4163,7 @@ Return nil if the private is part of the package name, as in | |||
| 4163 | 4163 | ||
| 4164 | 4164 | ||
| 4165 | (defun ada-in-paramlist-p () | 4165 | (defun ada-in-paramlist-p () |
| 4166 | "Return t if point is inside the parameter-list of a declaration, | 4166 | "Return t if point is inside the parameter-list of a declaration, but not a subprogram call or aggregate." |
| 4167 | but not a subprogram call or aggregate." | ||
| 4168 | (save-excursion | 4167 | (save-excursion |
| 4169 | (and | 4168 | (and |
| 4170 | (ada-search-ignore-string-comment "(\\|)" t nil t) | 4169 | (ada-search-ignore-string-comment "(\\|)" t nil t) |