(gnus-parse-complex-format): %~ => ~*.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 8 Jan 2003 16:14:10 +0000 (16:14 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 8 Jan 2003 16:14:10 +0000 (16:14 +0000)
lisp/ChangeLog
lisp/gnus-spec.el

index f73f3d1..c0ffced 100644 (file)
@@ -1,5 +1,7 @@
 2003-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-spec.el (gnus-parse-complex-format): %~ => ~*.
+
        * gnus-agent.el (gnus-agent-fetch-selected-article): Use
        gnus-summary-update-article-line. 
 
index 6153848..3f2ec2f 100644 (file)
@@ -409,7 +409,7 @@ characters when given a pad value."
   ;; them will have the balloon-help text property.
   (let ((case-fold-search nil))
     (if (string-match
-        "\\`\\(.*\\)%[0-9]?[{(«]\\(.*\\)%[0-9]?[»})]\\(.*\n?\\)\\'\\|%[-0-9]*=\\|%[-0-9]*~"
+        "\\`\\(.*\\)%[0-9]?[{(«]\\(.*\\)%[0-9]?[»})]\\(.*\n?\\)\\'\\|%[-0-9]*=\\|%[-0-9]*\\*"
         format)
        (gnus-parse-complex-format format spec-alist)
       ;; This is a simple format.
@@ -445,7 +445,7 @@ characters when given a pad value."
       ;; Convert point position commands.
       (goto-char (point-min))
       (let ((case-fold-search nil))
-       (while (re-search-forward "%\\([-0-9]+\\)?~" nil t)
+       (while (re-search-forward "%\\([-0-9]+\\)?\\*" nil t)
          (replace-match "\"(point)\"" t t)
          (setq cursor-spec t)))
       ;; Convert TAB commands.