* gnus-util.el (gnus-truncate-string): Abolished.
authoryamaoka <yamaoka>
Wed, 29 Aug 2001 07:29:34 +0000 (07:29 +0000)
committeryamaoka <yamaoka>
Wed, 29 Aug 2001 07:29:34 +0000 (07:29 +0000)
ChangeLog
lisp/gnus-util.el

index 40c0bd3..02e60db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * lisp/gnus-util.el (gnus-truncate-string): Abolished.
+
 2001-08-18  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
 
        * lisp/nnshimbun.el (gnus-group-make-shimbun-group): Call
index 8c46c94..99be280 100644 (file)
         (set symbol nil))
      symbol))
 
-;; 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
 ;; to limit the length of a string.  This function is necessary since
 ;; `(substr "abc" 0 30)' pukes with "Args out of range".