Revision: miles@gnu.org--gnu-2005/gnus--devo--0--patch-151
[gnus] / lisp / format-spec.el
index a43732f..5a4c2ad 100644 (file)
@@ -1,5 +1,5 @@
 ;;; format-spec.el --- functions for formatting arbitrary formatting strings
-;; Copyright (C) 1999-2000 Free Software Foundation, Inc.
+;; Copyright (C) 19992000 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
 ;; Keywords: tools
@@ -18,8 +18,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 +47,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 +68,5 @@ starting with a character."
 
 (provide 'format-spec)
 
+;;; arch-tag: c22d49cf-d167-445d-b7f1-2504d4173f53
 ;;; format-spec.el ends here