Mercurial > emacs
annotate lisp/gnus/format-spec.el @ 72428:608323e2c0e3
*** empty log message ***
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Thu, 17 Aug 2006 11:44:05 +0000 |
parents | 1077b8039c32 |
children | 183eba998a4d c5406394f567 |
rev | line source |
---|---|
31717 | 1 ;;; format-spec.el --- functions for formatting arbitrary formatting strings |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
2 |
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, |
68633
1077b8039c32
Update copyright notices of all files in the gnus directory.
Romain Francoise <romain@orebokech.com>
parents:
65944
diff
changeset
|
4 ;; 2005, 2006 Free Software Foundation, Inc. |
31717 | 5 |
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> | |
7 ;; Keywords: tools | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
31717 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
30 (eval-when-compile (require 'cl)) | |
31 | |
32 (defun format-spec (format specification) | |
33 "Return a string based on FORMAT and SPECIFICATION. | |
34 FORMAT is a string containing `format'-like specs like \"bash %u %k\", | |
35 while SPECIFICATION is an alist mapping from format spec characters | |
65944
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
36 to values. Any text properties on a %-spec itself are propagated to |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
37 the text that it generates." |
31717 | 38 (with-temp-buffer |
39 (insert format) | |
40 (goto-char (point-min)) | |
41 (while (search-forward "%" nil t) | |
42 (cond | |
43 ;; Quoted percent sign. | |
44 ((eq (char-after) ?%) | |
45 (delete-char 1)) | |
46 ;; Valid format spec. | |
47 ((looking-at "\\([-0-9.]*\\)\\([a-zA-Z]\\)") | |
48 (let* ((num (match-string 1)) | |
49 (spec (string-to-char (match-string 2))) | |
50 (val (cdr (assq spec specification)))) | |
51 (unless val | |
52 (error "Invalid format character: %s" spec)) | |
65944
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
53 ;; Pad result to desired length. |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
54 (let ((text (format (concat "%" num "s") val))) |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
55 ;; Insert first, to preserve text properties. |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
56 (insert-and-inherit text) |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
57 ;; Delete the specifier body. |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
58 (delete-region (+ (match-beginning 0) (length text)) |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
59 (+ (match-end 0) (length text))) |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
60 ;; Delete the percent sign. |
b993ed7387e0
(format-spec): Propagate text properties of % spec.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
61 (delete-region (1- (match-beginning 0)) (match-beginning 0))))) |
31717 | 62 ;; Signal an error on bogus format strings. |
63 (t | |
64 (error "Invalid format string")))) | |
65 (buffer-string))) | |
66 | |
67 (defun format-spec-make (&rest pairs) | |
68 "Return an alist suitable for use in `format-spec' based on PAIRS. | |
69 PAIRS is a list where every other element is a character and a value, | |
70 starting with a character." | |
71 (let (alist) | |
72 (while pairs | |
73 (unless (cdr pairs) | |
74 (error "Invalid list of pairs")) | |
75 (push (cons (car pairs) (cadr pairs)) alist) | |
76 (setq pairs (cddr pairs))) | |
77 (nreverse alist))) | |
78 | |
79 (provide 'format-spec) | |
80 | |
52401 | 81 ;;; arch-tag: c22d49cf-d167-445d-b7f1-2504d4173f53 |
31717 | 82 ;;; format-spec.el ends here |