From: yamaoka Date: Tue, 27 Jul 1999 04:08:51 +0000 (+0000) Subject: Remove file. X-Git-Tag: et-gnus-6_11_08-03~4 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0b716dba61634be76b73502cea68697dc033aa7d;p=elisp%2Fgnus.git- Remove file. --- diff --git a/lisp/paths.el.in b/lisp/paths.el.in deleted file mode 100644 index 816e0db..0000000 --- a/lisp/paths.el.in +++ /dev/null @@ -1,17 +0,0 @@ -;; -*- Emacs-Lisp -*- -(let ((addpath - "@ADDITIONAL_LOAD_PATH@" - ) - path paths) - (or (string-equal addpath "NONE") - (progn - (while (string-match "[^\0-\37:]+" addpath) - (setq path (file-name-as-directory - (expand-file-name (match-string 0 addpath))) - addpath (substring addpath (match-end 0))) - (if (string-match "apel/" path) - (setq path (substring path 0 (match-beginning 0)))) - (if (file-directory-p path) - (setq paths (nconc paths (list path))))) - (or (null paths) - (setq load-path (nconc paths load-path))))))