(gnus-string-width): Removed.
authorshuhei-k <shuhei-k>
Wed, 26 Aug 1998 00:03:42 +0000 (00:03 +0000)
committershuhei-k <shuhei-k>
Wed, 26 Aug 1998 00:03:42 +0000 (00:03 +0000)
(gnus-truncate-string): Ignore more than two arguments.

lisp/gnus-util.el

index 876e2fc..8e6c0b6 100644 (file)
         (set symbol nil))
      symbol))
 
-(defun gnus-string-width (str)
-  (length str))
-
-(defun gnus-truncate-string (str width)
+;; Avoid byte-compile warning.
+;; In Mule, this function will be redefined to `truncate-string',
+;; which takes 3 or 4 args.
+(defun gnus-truncate-string (str width &rest ignore)
   (substring str 0 width))
 
 ;; Added by Geoffrey T. Dairiki <dairiki@u.washington.edu>.  A safe way