* wl-vars.el (wl-invalid-character-message): New user option.
authorteranisi <teranisi>
Tue, 14 May 2002 05:49:02 +0000 (05:49 +0000)
committerteranisi <teranisi>
Tue, 14 May 2002 05:49:02 +0000 (05:49 +0000)
* wl-util.el (wl-set-string-width): If truncated string-width is larger than
specified width, use `wl-invalid-character-message'.

wl/ChangeLog
wl/wl-util.el
wl/wl-vars.el

index ac6e7c9..a6b29f0 100644 (file)
@@ -1,3 +1,10 @@
+2002-05-14  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * wl-vars.el (wl-invalid-character-message): New user option.
+
+       * wl-util.el (wl-set-string-width): If truncated string-width is
+       larger than specified width, use `wl-invalid-character-message'.
+
 2002-05-14  KAMO Tomoyuki  <kamo@i-manage.co.jp>
 
        * wl-summary.el (wl-summary-prefetch-msg): 
index d9ce4c7..d1f69b3 100644 (file)
@@ -186,12 +186,16 @@ to add the result instead of white space."
        (setq string (truncate-string-to-width string (abs width))))
     (if (= (string-width string) (abs width))
        string
-      (let ((paddings (make-string
-                      (max 0 (- (abs width) (string-width string)))
-                      (or padding ?\ ))))
-       (if (< width 0)
-           (concat paddings string)
-         (concat string paddings)))))
+      (if (< (abs width) (string-width string))
+         (wl-set-string-width width
+                              wl-invalid-character-message
+                              padding)
+       (let ((paddings (make-string
+                        (max 0 (- (abs width) (string-width string)))
+                        (or padding ?\ ))))
+         (if (< width 0)
+             (concat paddings string)
+           (concat string paddings))))))
    (t
     (elmo-set-work-buf
      (elmo-set-buffer-multibyte default-enable-multibyte-characters)
index c8d5186..823c595 100644 (file)
@@ -2425,6 +2425,11 @@ a symbol `bitmap', `xbm' or `xpm' in order to force the image format."
                (const :tag "bitmap (using BITMAP-MULE)" bitmap))
   :group 'wl-pref)
 
+(defcustom wl-invalid-character-message "(WL:Invalid characters.)"
+  "*A string displayed when invalid character exists."
+  :type 'string
+  :group 'wl-pref)
+
 ;;; Internal variables
 (defvar wl-init nil)