+Mon Dec 23 14:57:21 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tl: Version 7.61.16 was released.
+
+Thu Dec 19 10:06:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * filename.el (replace-as-filename): Check nil.
+
+\f
Mon Dec 16 13:42:44 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.15 was released.
;; Copyright (C) 1996 MORIOKA Tomohiko
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: filename.el,v 1.1 1996/12/16 13:42:14 morioka Exp $
+;; Version: $Id: filename.el,v 1.2 1996/12/19 10:06:42 morioka Exp $
;; Keywords: string, file name
;; This file is part of tl (Tiny Library).
(defun replace-as-filename (string)
"Return safety filename from STRING. [filename.el]"
- (poly-funcall filename-filters string)
- )
+ (and string
+ (poly-funcall filename-filters string)
+ ))
;;; @ end