]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak docstring and comment.
authorStephen Leake <stephen_leake@member.fsf.org>
Sat, 23 Jan 2010 12:34:52 +0000 (13:34 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 23 Jan 2010 12:34:52 +0000 (13:34 +0100)
lisp/progmodes/ada-mode.el

index 6e7af70a683884fdf88396998a2b6f929a6c17c5..a08e31e2016f49e6788c0d87a661796fd17a53cf 100644 (file)
@@ -257,7 +257,7 @@ Note that indentation is calculated only if `ada-indent-comment-as-code' is t.
 
 For instance:
     A := 1;   --  A multi-line comment
-             --  aligned if ada-indent-align-comments is t"
+             --  aligned if `ada-indent-align-comments' is t"
   :type 'boolean :group 'ada)
 
 (defcustom ada-indent-comment-as-code t
@@ -4163,8 +4163,7 @@ Return nil if the private is part of the package name, as in
 
 
 (defun ada-in-paramlist-p ()
-  "Return t if point is inside the parameter-list of a declaration,
-but not a subprogram call or aggregate."
+  "Return t if point is inside the parameter-list of a declaration, but not a subprogram call or aggregate."
   (save-excursion
     (and
      (ada-search-ignore-string-comment "(\\|)" t nil t)