aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Leake2010-01-23 13:34:52 +0100
committerJuanma Barranquero2010-01-23 13:34:52 +0100
commitb06a3bb5cf7893bb2f6c910334926d7cd551a18e (patch)
tree8eacecb2c556d0cc104737a4c682b833da362929
parentafb5d709049eb40291fa0126d48efca2f7061a10 (diff)
downloademacs-b06a3bb5cf7893bb2f6c910334926d7cd551a18e.tar.gz
emacs-b06a3bb5cf7893bb2f6c910334926d7cd551a18e.zip
Tweak docstring and comment.
-rw-r--r--lisp/progmodes/ada-mode.el5
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
258For instance: 258For 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."
4167but 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)