From: Stefan Monnier Date: Tue, 13 Nov 2001 20:19:08 +0000 (+0000) Subject: (ada-fill-comment-prefix): GNAT wants 2 spaces. X-Git-Tag: emacs-21.2~322 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5d4200b9fb6593bcd031e389e1c3b22f865163f0;p=emacs.git (ada-fill-comment-prefix): GNAT wants 2 spaces. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eb705578db1..facc5f7b94f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,9 @@ * newcomment.el (comment-normalize-vars): Handle a nil comment-padding. + * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces. + From Emmanuel Briot . + 2001-11-12 Richard M. Stallman * calendar/todo-mode.el (todo-save): Add save-excursion diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el index f1b79284b98..b927a7019d4 100644 --- a/lisp/progmodes/ada-mode.el +++ b/lisp/progmodes/ada-mode.el @@ -7,7 +7,7 @@ ;; Markus Heritsch ;; Emmanuel Briot ;; Maintainer: Emmanuel Briot -;; Ada Core Technologies's version: $Revision: 1.42 $ +;; Ada Core Technologies's version: $Revision: 1.43 $ ;; Keywords: languages ada ;; This file is part of GNU Emacs. @@ -281,9 +281,9 @@ An example is: "*Non-nil means indent according to the innermost open parenthesis." :type 'boolean :group 'ada) -(defcustom ada-fill-comment-prefix "-- " +(defcustom ada-fill-comment-prefix "-- " "*Text inserted in the first columns when filling a comment paragraph. -Note: if you modify this variable, you will have to restart the ada-mode to +Note: if you modify this variable, you will have to restart the `ada-mode' to reread this variable." :type 'string :group 'ada)