Function: ffap-lcd
ffap-lcd is a byte-compiled function defined in ffap.el.gz.
This function is obsolete since 29.1.
Signature
(ffap-lcd NAME)
Source Code
;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defun ffap-lcd (name)
(declare (obsolete nil "29.1"))
(and
(or
;; lisp-dir-apropos output buffer:
(string-match "Lisp Code Dir" (buffer-name))
;; Inside an LCD entry like |~/misc/ffap.el.Z|,
;; or maybe the holy LCD-Datafile itself:
(member (ffap-string-around) '("||" "|\n")))
(concat
;; lispdir.el may not be loaded yet:
(ffap-host-to-filename
(ffap-symbol-value 'elisp-archive-host
"archive.cis.ohio-state.edu"))
(file-name-as-directory
(ffap-symbol-value 'elisp-archive-directory
"/pub/gnu/emacs/elisp-archive/"))
(substring name 2))))