Add headers to fs.el file
These are missing and as a code janitor that's just plain unacceptable.
This commit is contained in:
parent
f11ae9c394
commit
47faf8d6f0
1 changed files with 8 additions and 2 deletions
|
@ -4,10 +4,17 @@
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;; Ergonomic alternatives for working with the filesystem.
|
;; Ergonomic alternatives for working with the filesystem.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Dependencies
|
;; Dependencies
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
(require 'f)
|
(require 'f)
|
||||||
|
|
||||||
;;; Code:
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; Library
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
(defun fs/ensure-file (path)
|
(defun fs/ensure-file (path)
|
||||||
"Ensure that a file and its directories in `PATH' exist.
|
"Ensure that a file and its directories in `PATH' exist.
|
||||||
|
@ -33,7 +40,6 @@ Should behave similarly in spirit to the Unix command, ls.
|
||||||
If `FULL-PATH?' is set, return the full-path of the files."
|
If `FULL-PATH?' is set, return the full-path of the files."
|
||||||
(-drop 2 (directory-files dir full-path?)))
|
(-drop 2 (directory-files dir full-path?)))
|
||||||
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Tests
|
;; Tests
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
Loading…
Reference in a new issue