2005-10-04 Reiner Steib <Reiner.Steib@gmx.de>
[gnus] / lisp / format-spec.el
index 8986dc0..86b9b55 100644 (file)
@@ -1,5 +1,7 @@
 ;;; format-spec.el --- functions for formatting arbitrary formatting strings
-;; Copyright (C) 1999 Free Software Foundation, Inc.
+
+;; Copyright (C) 1999, 2000, 2002, 2003, 2004,
+;;   2005 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
 ;; Keywords: tools
@@ -18,8 +20,8 @@
 
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;; Commentary:
 
@@ -47,7 +49,7 @@ to values."
               (val (cdr (assq spec specification))))
          (delete-region (1- (match-beginning 0)) (match-end 0))
          (unless val
-           (error "Invalid format character: %s" spec))
+           (error "Invalid format character: `%%%c'" spec))
          (insert (format (concat "%" num "s") val))))
        ;; Signal an error on bogus format strings.
        (t
@@ -68,4 +70,5 @@ starting with a character."
 
 (provide 'format-spec)
 
+;;; arch-tag: c22d49cf-d167-445d-b7f1-2504d4173f53
 ;;; format-spec.el ends here