From: yamaoka Date: Wed, 29 Aug 2001 07:29:34 +0000 (+0000) Subject: * gnus-util.el (gnus-truncate-string): Abolished. X-Git-Tag: t-gnus-6_15_3-06~16 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff5f0cff1c7a7c273bc5e1cd377510a08835c860;p=elisp%2Fgnus.git- * gnus-util.el (gnus-truncate-string): Abolished. --- diff --git a/ChangeLog b/ChangeLog index 40c0bd3..02e60db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-08-29 Katsumi Yamaoka + + * lisp/gnus-util.el (gnus-truncate-string): Abolished. + 2001-08-18 TSUCHIYA Masatoshi * lisp/nnshimbun.el (gnus-group-make-shimbun-group): Call diff --git a/lisp/gnus-util.el b/lisp/gnus-util.el index 8c46c94..99be280 100644 --- a/lisp/gnus-util.el +++ b/lisp/gnus-util.el @@ -85,12 +85,6 @@ (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 . 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".