* lisp/epa-file.el (epa-file--find-file-not-found-function): Use `error-slot-value` and `error-data`. (epa-file-insert-file-contents): Use `error-has-type-p`, `error-slot-value`, and `error-data`. * lisp/jka-compr.el (jka-compr-insert-file-contents): Use `error-has-type-p` and `error-slot-value` as well as new re-signaling form of `signal`. * lisp/simple.el (minibuffer-error-function): Use `error-has-type-p`. * lisp/startup.el (startup--load-user-init-file): Use `error-message-string`. (command-line): Use `error-has-type-p` and `error-message-string`. * lisp/type-break.el (type-break-demo-life): Use `error-message-string`. * lisp/emacs-lisp/bytecomp.el (batch-byte-compile-file): Use `error-message-string` and `error-has-type-p`. * lisp/emacs-lisp/edebug.el (edebug-safe-eval, edebug-report-error) (edebug-eval-expression): * lisp/emacs-lisp/debug.el (debugger-eval-expression): Use `error-message-string`. * lisp/emacs-lisp/ert.el (ert--should-error-handle-error): Use `error-has-type-p` and `error-type`. * lisp/net/sasl.el (sasl-error): Use `define-error`. * lisp/net/tramp-compat.el (tramp-error-type-p): New function. (tramp-permission-denied, tramp-compat-permission-denied): Use it. * lisp/progmodes/elisp-mode.el (elisp-completion-at-point): Use `error-type-p`. * lisp/xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal) (turn-off-xterm-mouse-tracking-on-terminal): Use `error-slot-value`. * lisp/simple.el (next-line, previous-line): Remove useless `condition-case` handler, and hence the whole `condition-case`, and then simplify. * lisp/gnus/nnrss.el (nnrss-insert): Use `with-demoted-errors`. * lisp/gnus/nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p) (nnmaildir--eexist-p): Use `error-has-type-p`. (nnmaildir--new-number, nnmaildir-request-set-mark): Use single-arg `signal`. * lisp/ffap.el (ffap-machine-p): Use `error-slot-value`. * lisp/emacs-lisp/comp.el (comp--native-compile): Use `error-has-type-p` as well as single-arg `signal`. * lisp/net/ange-ftp.el (ange-ftp-hook-function): Use single-arg `signal`. * lisp/ebuff-menu.el (electric-buffer-menu-looper): Use `error-has-type-p`. * lisp/progmodes/ebrowse.el (ebrowse-electric-list-looper): Use `error-has-type-p`. (ebrowse-electric-position-looper): Make it an alias of `ebrowse-electric-list-looper`. * lisp/ibuffer.el (ibuffer-confirm-operation-on): * lisp/ls-lisp.el (ls-lisp--insert-directory): * lisp/gnus/gnus-search.el (gnus-search-run-query): * lisp/mail/mail-extr.el (mail-extr-safe-move-sexp): * lisp/net/dbus.el (dbus-set-property): * lisp/net/eudc-export.el (eudc-bbdbify-phone): * lisp/net/imap.el (imap-fetch-safe): * lisp/vc/vc.el (vc-root-dir): Use `error-slot-value` and single-arg `signal` to re-signal.
939 lines
38 KiB
EmacsLisp
939 lines
38 KiB
EmacsLisp
;;; ls-lisp.el --- emulate insert-directory completely in Emacs Lisp -*- lexical-binding: t -*-
|
|
|
|
;; Copyright (C) 1992, 1994, 2000-2026 Free Software Foundation, Inc.
|
|
|
|
;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
|
|
;; Modified by: Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>
|
|
;; Maintainer: emacs-devel@gnu.org
|
|
;; Keywords: unix, dired
|
|
;; Package: emacs
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; OVERVIEW ==========================================================
|
|
|
|
;; This file advises the function `insert-directory' to implement it
|
|
;; directly from Emacs Lisp, without running ls in a subprocess.
|
|
;; This is useful if you don't have ls installed (ie, on MS Windows).
|
|
|
|
;; This function can use regexps instead of shell wildcards. If you
|
|
;; enter regexps remember to double each $ sign. For example, to
|
|
;; include files *.el, enter `.*\.el$$', resulting in the regexp
|
|
;; `.*\.el$'.
|
|
|
|
;; RESTRICTIONS ======================================================
|
|
|
|
;; * A few obscure ls switches are still ignored: see the docstring of
|
|
;; `insert-directory'.
|
|
|
|
;; TO DO =============================================================
|
|
|
|
;; Complete handling of F switch (if/when possible).
|
|
|
|
;; FJW: May be able to sort much faster by consing the sort key onto
|
|
;; the front of each list element, sorting and then stripping the key
|
|
;; off again!
|
|
|
|
;;; History:
|
|
|
|
;; Written originally by Sebastian Kremer <sk@thp.uni-koeln.de>
|
|
;; Revised by Andrew Innes and Geoff Volker (and maybe others).
|
|
|
|
;; Modified by Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>, mainly
|
|
;; to support many more ls options, "platform emulation" and more
|
|
;; robust sorting.
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defgroup ls-lisp nil
|
|
"Emulate the ls program completely in Emacs Lisp."
|
|
:version "21.1"
|
|
:group 'dired)
|
|
|
|
(defun ls-lisp-set-options ()
|
|
"Reset the ls-lisp options that depend on `ls-lisp-emulation'."
|
|
(mapc 'custom-reevaluate-setting
|
|
'(ls-lisp-ignore-case
|
|
ls-lisp-dirs-first
|
|
ls-lisp-verbosity
|
|
ls-lisp-use-string-collate)))
|
|
|
|
(defcustom ls-lisp-emulation
|
|
(cond ;; ((eq system-type 'windows-nt) 'MS-Windows)
|
|
((memq system-type '(hpux usg-unix-v berkeley-unix))
|
|
'UNIX)) ; very similar to GNU
|
|
;; Anything else defaults to nil, meaning GNU.
|
|
"Platform to emulate: GNU (default), macOS, MS-Windows, UNIX.
|
|
Corresponding value is one of: nil, `MacOS', `MS-Windows', `UNIX'.
|
|
Set this to your preferred value; it need not match the actual platform
|
|
you are using.
|
|
|
|
This variable does not affect the behavior of ls-lisp directly.
|
|
Rather, it controls the default values for some variables that do:
|
|
`ls-lisp-ignore-case', `ls-lisp-dirs-first', and `ls-lisp-verbosity'.
|
|
|
|
If you change this variable directly (without using customize)
|
|
after loading `ls-lisp', you should use `ls-lisp-set-options' to
|
|
update the dependent variables."
|
|
:type '(choice (const :tag "GNU" nil)
|
|
(const MacOS)
|
|
(const MS-Windows)
|
|
(const UNIX))
|
|
:initialize 'custom-initialize-default
|
|
:set (lambda (symbol value)
|
|
(unless (equal value (eval symbol))
|
|
(custom-set-default symbol value)
|
|
(ls-lisp-set-options)))
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-ignore-case
|
|
(not (not (memq ls-lisp-emulation '(MS-Windows MacOS))))
|
|
"Non-nil causes ls-lisp alphabetic sorting to ignore case."
|
|
:set-after '(ls-lisp-emulation)
|
|
:type 'boolean
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-use-string-collate
|
|
(cond ((memq ls-lisp-emulation '(MacOS UNIX)) nil)
|
|
(t t)) ; GNU/Linux or MS-Windows emulate GNU ls
|
|
"Non-nil causes ls-lisp to sort files in locale-dependent collation order.
|
|
|
|
A value of nil means use ordinary string comparison (see `compare-strings')
|
|
for sorting files. A non-nil value uses `string-collate-lessp' instead,
|
|
which more closely emulates what GNU `ls' does.
|
|
|
|
On GNU/Linux systems, if the locale's codeset specifies UTF-8, as
|
|
in \"en_US.UTF-8\", the collation order follows the Unicode
|
|
Collation Algorithm (UCA), which places together file names that
|
|
differ only in punctuation characters. On MS-Windows, customize
|
|
the option `ls-lisp-UCA-like-collation' to a non-nil value to get
|
|
similar behavior."
|
|
:version "25.1"
|
|
:set-after '(ls-lisp-emulation)
|
|
:type 'boolean
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-UCA-like-collation t
|
|
"Non-nil means force ls-lisp use a collation order compatible with UCA.
|
|
|
|
UCA is the Unicode Collation Algorithm. GNU/Linux systems automatically
|
|
follow it in their string-collation routines if the locale specifies
|
|
UTF-8 as its codeset. On MS-Windows, customize this option to a non-nil
|
|
value to get similar behavior.
|
|
|
|
When this option is non-nil, and `ls-lisp-use-string-collate' is also
|
|
non-nil, the collation order produced on MS-Windows will ignore
|
|
punctuation and symbol characters, which will, for example, place
|
|
`.foo' near `foo'. See the documentation of `string-collate-lessp'
|
|
and `w32-collate-ignore-punctuation' for more details.
|
|
|
|
This option is ignored on platforms other than MS-Windows; to
|
|
control the collation ordering of the file names on those other
|
|
systems, set your locale instead."
|
|
:version "25.1"
|
|
:type 'boolean
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-dirs-first (eq ls-lisp-emulation 'MS-Windows)
|
|
"Non-nil causes ls-lisp to sort directories first in any ordering.
|
|
\(Or last if it is reversed.) Follows Microsoft Windows Explorer."
|
|
;; Functionality suggested by Chris McMahan <cmcmahan@one.net>
|
|
:set-after '(ls-lisp-emulation)
|
|
:type 'boolean
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-verbosity
|
|
(cond ((eq ls-lisp-emulation 'MacOS) nil)
|
|
((eq ls-lisp-emulation 'MS-Windows)
|
|
(if (and (fboundp 'w32-using-nt) (w32-using-nt))
|
|
'(links))) ; distinguish NT/2K from 9x
|
|
((eq ls-lisp-emulation 'UNIX) '(links uid modes)) ; UNIX ls
|
|
(t '(links uid gid modes))) ; GNU ls
|
|
"A list of optional file attributes that ls-lisp should display.
|
|
It should contain none or more of the symbols: links, uid, gid.
|
|
A value of nil (or an empty list) means display none of them.
|
|
|
|
Concepts come from UNIX: `links' means count of names associated with
|
|
the file; `uid' means user (owner) identifier; `gid' means group
|
|
identifier; `modes' means Unix-style permission bits (drwxrwxrwx).
|
|
|
|
If emulation is MacOS then default is nil;
|
|
if emulation is MS-Windows then default is `(links)' if platform is
|
|
Windows NT/2K, nil otherwise;
|
|
if emulation is UNIX then default is `(links uid)';
|
|
if emulation is GNU then default is `(links uid gid)'."
|
|
:set-after '(ls-lisp-emulation)
|
|
;; Functionality suggested by Howard Melman <howard@silverstream.com>
|
|
:type '(set (const :tag "Show Link Count" links)
|
|
(const :tag "Show User" uid)
|
|
(const :tag "Show Group" gid)
|
|
(const :tag "Show Modes" modes))
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-use-insert-directory-program
|
|
(not (memq system-type '(ms-dos windows-nt android)))
|
|
"Non-nil causes ls-lisp to revert back to using `insert-directory-program'.
|
|
This is useful on platforms where ls-lisp is dumped into Emacs, such as
|
|
Microsoft Windows, but you would still like to use a program to list
|
|
the contents of a directory."
|
|
:type 'boolean
|
|
:group 'ls-lisp)
|
|
|
|
;;; Autoloaded because it is let-bound in `recover-session', `mail-recover-1'.
|
|
;;;###autoload
|
|
(defcustom ls-lisp-support-shell-wildcards t
|
|
"Non-nil means ls-lisp treats file patterns as shell wildcards.
|
|
Otherwise they are treated as Emacs regexps (for backward compatibility)."
|
|
:type 'boolean
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-format-time-list
|
|
'("%b %e %H:%M"
|
|
"%b %e %Y")
|
|
"List of `format-time-string' specs to display file time stamps.
|
|
These specs are used ONLY if a valid locale can not be determined,
|
|
or if the locale is \"C\" or \"POSIX\". If a valid non-\"C\" locale
|
|
can be determined, file time stamps are displayed using hardcoded
|
|
formats \"%m-%d %H:%M\" for new files and \"%Y-%m-%d\" for old files.
|
|
|
|
If `ls-lisp-use-localized-time-format' is non-nil, the specs specified
|
|
by this option are used regardless of whether the locale can be determined.
|
|
|
|
The locale is determined by `ls-lisp-format-time', which see.
|
|
|
|
Syntax: (EARLY-TIME-FORMAT OLD-TIME-FORMAT)
|
|
|
|
The EARLY-TIME-FORMAT is used if file has been modified within the
|
|
current year. The OLD-TIME-FORMAT is used for older files. To use ISO
|
|
8601 dates, you could set:
|
|
|
|
\(setq ls-lisp-format-time-list
|
|
\\='(\"%Y-%m-%d %H:%M\"
|
|
\"%Y-%m-%d \"))"
|
|
:type '(list (string :tag "Early time format")
|
|
(string :tag "Old time format"))
|
|
:group 'ls-lisp)
|
|
|
|
(defcustom ls-lisp-use-localized-time-format nil
|
|
"Non-nil means to always use `ls-lisp-format-time-list' for time stamps.
|
|
This applies even if a valid locale is determined by `ls-lisp-format-time'.
|
|
|
|
WARNING: Using localized date/time format might cause Dired columns
|
|
to fail to line up, e.g. if month names are not all of the same length."
|
|
:type 'boolean
|
|
:group 'ls-lisp)
|
|
|
|
(defvar ls-lisp-uid-d-fmt " %d"
|
|
"Format to display integer UIDs.")
|
|
(defvar ls-lisp-uid-s-fmt " %s"
|
|
"Format to display user names.")
|
|
(defvar ls-lisp-gid-d-fmt " %d"
|
|
"Format to display integer GIDs.")
|
|
(defvar ls-lisp-gid-s-fmt " %s"
|
|
"Format to display user group names.")
|
|
(defvar ls-lisp-filesize-d-fmt " %d"
|
|
"Format to display integer file sizes.")
|
|
(defvar ls-lisp-filesize-f-fmt " %.0f"
|
|
"Format to display float file sizes.")
|
|
(defvar ls-lisp-filesize-b-fmt " %.0f"
|
|
"Format to display file sizes in blocks (for the -s switch).")
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(defun ls-lisp--insert-directory (file switches wildcard full-directory-p)
|
|
"Insert directory listing for FILE, formatted according to SWITCHES.
|
|
This implementation of `insert-directory' works using Lisp functions rather
|
|
than `insert-directory-program'.
|
|
|
|
This Lisp emulation does not run any external programs or shells.
|
|
It supports ordinary shell wildcards if `ls-lisp-support-shell-wildcards'
|
|
is non-nil; otherwise, it interprets wildcards as regular expressions
|
|
to match file names. It does not support all `ls' switches -- those
|
|
that work are: A a B C c F G g h i n R r S s t U u v X. The l switch
|
|
is assumed to be always present and cannot be turned off.
|
|
Long variants of the above switches, as documented for GNU `ls',
|
|
are also supported; unsupported long options are silently ignored."
|
|
(setq switches (or switches ""))
|
|
(let ((orig-file file)
|
|
wildcard-regexp
|
|
(ls-lisp-dirs-first
|
|
(or ls-lisp-dirs-first
|
|
(string-match "--group-directories-first" switches))))
|
|
(when (string-match "--group-directories-first" switches)
|
|
;; if ls-lisp-dirs-first is nil, dirs are grouped but come out in
|
|
;; reverse order:
|
|
(setq ls-lisp-dirs-first t)
|
|
(setq switches (replace-match "" nil nil switches)))
|
|
;; Remove unrecognized long options, and convert the
|
|
;; recognized ones to their short variants.
|
|
(setq switches (ls-lisp--sanitize-switches switches))
|
|
;; Convert SWITCHES to a list of characters.
|
|
(setq switches (delete ?\ (delete ?- (append switches nil))))
|
|
;; Sometimes we get ".../foo*/" as FILE. While the shell and
|
|
;; `ls' don't mind, we certainly do, because it makes us think
|
|
;; there is no wildcard, only a directory name.
|
|
(if (and ls-lisp-support-shell-wildcards
|
|
(string-match "[[?*]" file)
|
|
;; Prefer an existing file to wildcards, like
|
|
;; dired-noselect does.
|
|
(not (file-exists-p file)))
|
|
(progn
|
|
(or (not (eq (aref file (1- (length file))) ?/))
|
|
(setq file (substring file 0 (1- (length file)))))
|
|
(setq wildcard t)))
|
|
(if wildcard
|
|
(setq wildcard-regexp
|
|
(if ls-lisp-support-shell-wildcards
|
|
(wildcard-to-regexp (file-name-nondirectory file))
|
|
(file-name-nondirectory file))
|
|
file (file-name-directory file))
|
|
(if (memq ?B switches) (setq wildcard-regexp "[^~]\\'")))
|
|
(condition-case err
|
|
(ls-lisp-insert-directory
|
|
file switches (ls-lisp-time-index switches)
|
|
wildcard-regexp full-directory-p)
|
|
(invalid-regexp
|
|
;; Maybe they wanted a literal file that just happens to
|
|
;; use characters special to shell wildcards.
|
|
(if (equal (error-slot-value err 1) "Unmatched [ or [^")
|
|
(progn
|
|
(setq wildcard-regexp (if (memq ?B switches) "[^~]\\'")
|
|
file (file-relative-name orig-file))
|
|
(ls-lisp-insert-directory
|
|
file switches (ls-lisp-time-index switches)
|
|
nil full-directory-p))
|
|
(signal err))))))
|
|
|
|
(defun ls-lisp-insert-directory
|
|
(file switches time-index wildcard-regexp full-directory-p)
|
|
"Insert directory listing for FILE, formatted according to SWITCHES.
|
|
Leaves point after the inserted text. This is an internal function
|
|
optionally called by the `ls-lisp.el' version of `insert-directory'.
|
|
It is called recursively if the -R switch is used.
|
|
SWITCHES is a *list* of characters. TIME-INDEX is the time index into
|
|
file-attributes according to SWITCHES. WILDCARD-REGEXP is nil or an *Emacs
|
|
regexp*. FULL-DIRECTORY-P means file is a directory and SWITCHES does
|
|
not contain `d', so that a full listing is expected."
|
|
(if (or (and wildcard-regexp
|
|
(not (string= "[^~]\\'" wildcard-regexp))) ; Switch -B pseudo-wildcard regexp
|
|
full-directory-p)
|
|
(let* ((dir (file-name-as-directory file))
|
|
(default-directory dir) ; so that file-attributes works
|
|
(id-format (if (memq ?n switches)
|
|
'integer
|
|
'string))
|
|
(file-alist
|
|
(catch 'new-list
|
|
(handler-bind
|
|
((error
|
|
(lambda (error)
|
|
;; `directory-files-and-attributes' signals
|
|
;; failure on Unix systems if even a single
|
|
;; file's attributes cannot be accessed.
|
|
;;
|
|
;; Detect errors signaled while retrieving file
|
|
;; attributes and resolve them by creating the
|
|
;; attribute list manually, ignoring the
|
|
;; attributes of files that cannot be accessed
|
|
;; in this sense.
|
|
(when (member (cadr error)
|
|
'("Getting attributes"
|
|
"Reading symbolic link"))
|
|
(let ((file-list (directory-files dir nil
|
|
wildcard-regexp
|
|
t)))
|
|
(throw 'new-list
|
|
(mapcar (lambda (file)
|
|
(cons file
|
|
(or (ignore-errors
|
|
(file-attributes
|
|
file id-format))
|
|
nil)))
|
|
file-list)))))))
|
|
(directory-files-and-attributes
|
|
dir nil wildcard-regexp t id-format))))
|
|
(sum 0)
|
|
(max-uid-len 0)
|
|
(max-gid-len 0)
|
|
(max-file-size 0)
|
|
;; do all bindings here for speed
|
|
total-line files elt short file-size attr
|
|
fuid fgid uid-len gid-len)
|
|
(setq file-alist (ls-lisp-sanitize file-alist))
|
|
(cond ((memq ?A switches)
|
|
(setq file-alist
|
|
(ls-lisp-delete-matching "^\\.\\.?$" file-alist)))
|
|
((not (memq ?a switches))
|
|
;; if neither -A nor -a, flush . files
|
|
(setq file-alist
|
|
(ls-lisp-delete-matching "^\\." file-alist))))
|
|
(setq file-alist
|
|
(ls-lisp-handle-switches file-alist switches))
|
|
(if (memq ?C switches) ; column (-C) format
|
|
(ls-lisp-column-format file-alist)
|
|
(setq total-line (cons (point) (car-safe file-alist)))
|
|
;; Find the appropriate format for displaying uid, gid, and
|
|
;; file size, by finding the longest strings among all the
|
|
;; files we are about to display.
|
|
(dolist (elt file-alist)
|
|
(setq attr (cdr elt)
|
|
fuid (file-attribute-user-id attr)
|
|
uid-len (if (stringp fuid) (string-width fuid)
|
|
(length (format "%d" fuid)))
|
|
fgid (file-attribute-group-id attr)
|
|
gid-len (if (stringp fgid) (string-width fgid)
|
|
(length (format "%d" fgid)))
|
|
file-size (file-attribute-size attr))
|
|
(if (> uid-len max-uid-len)
|
|
(setq max-uid-len uid-len))
|
|
(if (> gid-len max-gid-len)
|
|
(setq max-gid-len gid-len))
|
|
(if (> file-size max-file-size)
|
|
(setq max-file-size file-size)))
|
|
(setq ls-lisp-uid-d-fmt (format " %%-%dd" max-uid-len))
|
|
(setq ls-lisp-uid-s-fmt (format " %%-%ds" max-uid-len))
|
|
(setq ls-lisp-gid-d-fmt (format " %%-%dd" max-gid-len))
|
|
(setq ls-lisp-gid-s-fmt (format " %%-%ds" max-gid-len))
|
|
(setq ls-lisp-filesize-d-fmt
|
|
(format " %%%dd" (length (format "%.0f" max-file-size))))
|
|
(setq ls-lisp-filesize-f-fmt
|
|
(format " %%%d.0f" (length (format "%.0f" max-file-size))))
|
|
(if (memq ?s switches)
|
|
(setq ls-lisp-filesize-b-fmt
|
|
(format "%%%d.0f "
|
|
(length (format "%.0f"
|
|
(fceiling
|
|
(/ max-file-size 1024.0)))))))
|
|
(setq files file-alist)
|
|
(while files ; long (-l) format
|
|
(setq elt (car files)
|
|
files (cdr files)
|
|
short (car elt)
|
|
attr (cdr elt)
|
|
file-size (file-attribute-size attr))
|
|
(and attr
|
|
(setq sum (+ file-size sum))
|
|
(insert (ls-lisp-format short attr file-size
|
|
switches time-index))))
|
|
;; Insert total size of all files:
|
|
(save-excursion
|
|
(goto-char (car total-line))
|
|
(or (cdr total-line)
|
|
;; Shell says ``No match'' if no files match
|
|
;; the wildcard; let's say something similar.
|
|
(insert "(No match)\n"))
|
|
(insert (format "total %.0f\n" (fceiling (/ sum 1024.0))))))
|
|
;; dired-insert-directory expects to find point after the
|
|
;; text. But if the listing is empty, as e.g. in empty
|
|
;; directories with -a removed from switches, point will be
|
|
;; before the inserted text, and dired-insert-directory will
|
|
;; not indent the listing correctly. Getting past the
|
|
;; inserted text solves this.
|
|
(unless (cdr total-line) (forward-line 2))
|
|
(if (memq ?R switches)
|
|
;; List the contents of all directories recursively.
|
|
;; cadr of each element of `file-alist' is t for
|
|
;; directory, string (name linked to) for symbolic
|
|
;; link, or nil.
|
|
(while file-alist
|
|
(setq elt (car file-alist)
|
|
file-alist (cdr file-alist))
|
|
(when (and (eq (cadr elt) t) ; directory
|
|
;; Under -F, we have already decorated all
|
|
;; directories, including "." and "..", with
|
|
;; a /, so allow for that as well.
|
|
(not (string-match "\\`\\.\\.?/?\\'" (car elt))))
|
|
(setq elt (expand-file-name (car elt) dir))
|
|
(insert "\n" elt ":\n")
|
|
(ls-lisp-insert-directory
|
|
elt switches time-index wildcard-regexp full-directory-p)))))
|
|
;; If not full-directory-p, FILE *must not* end in /, as
|
|
;; file-attributes will not recognize a symlink to a directory,
|
|
;; so must make it a relative filename as ls does:
|
|
(if (file-name-absolute-p file) (setq file (expand-file-name file)))
|
|
(if (eq (aref file (1- (length file))) ?/)
|
|
(setq file (substring file 0 -1)))
|
|
(let ((fattr (file-attributes file 'string)))
|
|
(if fattr
|
|
(insert (ls-lisp-format
|
|
(if (memq ?F switches)
|
|
(ls-lisp-classify-file file fattr)
|
|
file)
|
|
fattr (file-attribute-size fattr)
|
|
switches time-index))
|
|
;; Emulate what we do on Posix hosts when we call access-file
|
|
;; in insert-directory.
|
|
(signal 'file-error
|
|
(list "Reading directory"
|
|
"Directory doesn't exist or is inaccessible"
|
|
file))))))
|
|
|
|
(defun ls-lisp-sanitize (file-alist)
|
|
"Sanitize the elements in FILE-ALIST.
|
|
Fixes any elements in the alist for directory entries whose file
|
|
attributes are nil (meaning that `file-attributes' failed for
|
|
them). This is known to happen for some network shares, in
|
|
particular for the \"..\" directory entry.
|
|
|
|
If the \"..\" directory entry has nil attributes, the attributes
|
|
are copied from the \".\" entry, if they are non-nil. Otherwise,
|
|
the offending element is removed from the list, as are any
|
|
elements for other directory entries with nil attributes."
|
|
(if (and (consp (assoc ".." file-alist))
|
|
(null (cdr (assoc ".." file-alist)))
|
|
(cdr (assoc "." file-alist)))
|
|
(setcdr (assoc ".." file-alist) (cdr (assoc "." file-alist))))
|
|
(rassq-delete-all nil file-alist))
|
|
|
|
(defun ls-lisp-column-format (file-alist)
|
|
"Insert the file names (only) in FILE-ALIST into the current buffer.
|
|
Format in columns, sorted vertically, following GNU ls -C.
|
|
Responds to the window width as ls should but may not!"
|
|
(let (files fmt ncols collen (nfiles 0) (colwid 0))
|
|
;; Count number of files as `nfiles', build list of filenames as
|
|
;; `files', and find maximum filename length as `colwid':
|
|
(let (file len)
|
|
(while file-alist
|
|
(setq nfiles (1+ nfiles)
|
|
file (caar file-alist)
|
|
files (cons file files)
|
|
file-alist (cdr file-alist)
|
|
len (length file))
|
|
(if (> len colwid) (setq colwid len))))
|
|
(setq files (nreverse files)
|
|
colwid (+ 2 colwid) ; 2 character column gap
|
|
fmt (format "%%-%ds" colwid) ; print format
|
|
ncols (/ (window-width) colwid) ; no of columns
|
|
collen (/ nfiles ncols)) ; floor of column length
|
|
(if (> nfiles (* collen ncols)) (setq collen (1+ collen)))
|
|
;; Output the file names in columns, sorted vertically:
|
|
(let ((i 0) j)
|
|
(while (< i collen)
|
|
(setq j i)
|
|
(while (< j nfiles)
|
|
(insert (format fmt (nth j files)))
|
|
(setq j (+ j collen)))
|
|
;; FJW: This is completely unnecessary, but I don't like
|
|
;; trailing white space...
|
|
(delete-region (point) (progn (skip-chars-backward " \t") (point)))
|
|
(insert ?\n)
|
|
(setq i (1+ i))))))
|
|
|
|
(defun ls-lisp-delete-matching (regexp list)
|
|
"Delete all elements matching REGEXP from LIST, return new list."
|
|
;; Should perhaps use setcdr for efficiency.
|
|
(let (result)
|
|
(while list
|
|
(or (string-match regexp (caar list))
|
|
(setq result (cons (car list) result)))
|
|
(setq list (cdr list)))
|
|
result))
|
|
|
|
(defvar w32-collate-ignore-punctuation) ; Declare for non-w32 builds.
|
|
|
|
(defsubst ls-lisp-string-lessp (s1 s2)
|
|
"Return t if string S1 should sort before string S2.
|
|
Case is significant if `ls-lisp-ignore-case' is nil.
|
|
Uses `string-collate-lessp' if `ls-lisp-use-string-collate' is non-nil,
|
|
`compare-strings' otherwise.
|
|
On GNU/Linux systems, if the locale specifies UTF-8 as the codeset,
|
|
the sorting order will place together file names that differ only
|
|
by punctuation characters, like `.emacs' and `emacs'. To have a
|
|
similar behavior on MS-Windows, customize `ls-lisp-UCA-like-collation'
|
|
to a non-nil value."
|
|
(let ((w32-collate-ignore-punctuation ls-lisp-UCA-like-collation))
|
|
(if ls-lisp-use-string-collate
|
|
(string-collate-lessp s1 s2 nil ls-lisp-ignore-case)
|
|
(let ((u (compare-strings s1 0 nil s2 0 nil ls-lisp-ignore-case)))
|
|
(and (numberp u) (< u 0))))))
|
|
|
|
(defun ls-lisp-version-lessp (s1 s2)
|
|
"Return t if versioned string S1 should sort before versioned string S2.
|
|
|
|
Case is significant if `ls-lisp-ignore-case' is nil.
|
|
This is the same as `string-lessp' (with the exception of case
|
|
insensitivity), but sequences of digits are compared numerically,
|
|
as a whole, in the same manner as the `strverscmp' function available
|
|
in some standard C libraries does."
|
|
(let ((i1 0)
|
|
(i2 0)
|
|
(len1 (length s1))
|
|
(len2 (length s2))
|
|
(val 0)
|
|
ni1 ni2 e1 e2 found-2-numbers-p)
|
|
(while (and (< i1 len1) (< i2 len2) (zerop val))
|
|
(unless found-2-numbers-p
|
|
(setq ni1 (string-match "[0-9]+" s1 i1)
|
|
e1 (match-end 0))
|
|
(setq ni2 (string-match "[0-9]+" s2 i2)
|
|
e2 (match-end 0)))
|
|
(cond
|
|
((and ni1 ni2)
|
|
(cond
|
|
((and (> ni1 i1) (> ni2 i2))
|
|
;; Compare non-numerical part as strings.
|
|
(setq val (compare-strings s1 i1 ni1 s2 i2 ni2 ls-lisp-ignore-case)
|
|
i1 ni1
|
|
i2 ni2
|
|
found-2-numbers-p t))
|
|
((and (= ni1 i1) (= ni2 i2))
|
|
(setq found-2-numbers-p nil)
|
|
;; Compare numerical parts as integral and/or fractional parts.
|
|
(let* ((sub1 (substring s1 ni1 e1))
|
|
(sub2 (substring s2 ni2 e2))
|
|
;; "Fraction" is a numerical sequence with leading zeros.
|
|
(fr1 (string-match "\\`0+" sub1))
|
|
(efr1 (match-end 0))
|
|
(fr2 (string-match "\\`0+" sub2))
|
|
(efr2 (match-end 0)))
|
|
(cond
|
|
;; Two fractions: the longer one is less than the other,
|
|
;; but only if the "common prefix" is all-zeroes,
|
|
;; otherwise fall back on numerical comparison.
|
|
((and fr1 fr2)
|
|
(if (or (and (< efr1 (- e1 ni1)) (< efr2 (- e2 ni2))
|
|
(not (eq (aref sub1 efr1) (aref sub2 efr2))))
|
|
(= efr1 (- e1 ni1)) (= efr2 (- e2 ni2)))
|
|
(setq val (- val (- (length sub1) (length sub2))))))
|
|
(fr1 ; a fraction is always less than an integral
|
|
(setq val (- 0 ni1 1))) ; make sure val is non-zero
|
|
(fr2
|
|
(setq val (1+ ni2)))) ; make sure val is non-zero
|
|
(if (zerop val) ; fall back on numerical comparison
|
|
(setq val (- (string-to-number sub1)
|
|
(string-to-number sub2))))
|
|
(setq i1 e1
|
|
i2 e2)))
|
|
(t
|
|
(setq val (compare-strings s1 i1 nil s2 i2 nil ls-lisp-ignore-case)
|
|
i1 len1
|
|
i2 len2))))
|
|
(t (setq val (compare-strings s1 i1 nil s2 i2 nil ls-lisp-ignore-case)
|
|
i1 len1
|
|
i2 len2)))
|
|
(and (eq val t) (setq val 0)))
|
|
(if (zerop val)
|
|
(setq val (- len1 len2)))
|
|
(< val 0)))
|
|
|
|
(defun ls-lisp-handle-switches (file-alist switches)
|
|
"Return new FILE-ALIST sorted according to SWITCHES.
|
|
SWITCHES is a list of characters. Default sorting is alphabetic."
|
|
;; FILE-ALIST's elements are (FILE . FILE-ATTRIBUTES).
|
|
(or (memq ?U switches) ; unsorted
|
|
;; Catch and ignore unexpected sorting errors
|
|
(condition-case err
|
|
(setq file-alist
|
|
(let (index)
|
|
;; Copy file-alist in case of error
|
|
(sort (copy-sequence file-alist) ; modifies its argument!
|
|
(cond ((memq ?S switches)
|
|
(lambda (x y) ; sorted on size
|
|
;; Make largest file come first
|
|
(< (file-attribute-size (cdr y))
|
|
(file-attribute-size (cdr x)))))
|
|
((setq index (ls-lisp-time-index switches))
|
|
(lambda (x y) ; sorted on time
|
|
(time-less-p (nth index (cdr y))
|
|
(nth index (cdr x)))))
|
|
((memq ?X switches)
|
|
(lambda (x y) ; sorted on extension
|
|
(ls-lisp-string-lessp
|
|
(ls-lisp-extension (car x))
|
|
(ls-lisp-extension (car y)))))
|
|
((memq ?v switches)
|
|
(lambda (x y) ; sorted by version number
|
|
(ls-lisp-version-lessp (car x) (car y))))
|
|
(t
|
|
(lambda (x y) ; sorted alphabetically
|
|
(ls-lisp-string-lessp (car x) (car y))))))))
|
|
(error (message "Unsorted (ls-lisp sorting error) - %s"
|
|
(error-message-string err))
|
|
(ding) (sit-for 2)))) ; to show user the message!
|
|
(if (memq ?F switches) ; classify switch
|
|
(setq file-alist (mapcar 'ls-lisp-classify file-alist)))
|
|
(if ls-lisp-dirs-first
|
|
;; Re-sort directories first, without otherwise changing the
|
|
;; ordering, and reverse whole list. cadr of each element of
|
|
;; `file-alist' is t for directory, string (name linked to) for
|
|
;; symbolic link, or nil.
|
|
(let (el dirs files)
|
|
(while file-alist
|
|
(if (or (eq (cadr (setq el (car file-alist))) t) ; directory
|
|
(and (stringp (cadr el))
|
|
(file-directory-p (cadr el)))) ; symlink to a directory
|
|
(setq dirs (cons el dirs))
|
|
(setq files (cons el files)))
|
|
(setq file-alist (cdr file-alist)))
|
|
(setq file-alist
|
|
(if (memq ?U switches) ; unsorted order is reversed
|
|
(nconc dirs files)
|
|
(nconc files dirs)
|
|
))))
|
|
;; Finally reverse file alist if necessary.
|
|
;; (eq below MUST compare `(not (memq ...))' to force comparison of
|
|
;; t or nil, rather than list tails!)
|
|
(if (eq (eq (not (memq ?U switches)) ; unsorted order is reversed
|
|
(not (memq ?r switches))) ; reversed sort order requested
|
|
ls-lisp-dirs-first) ; already reversed
|
|
(nreverse file-alist)
|
|
file-alist))
|
|
|
|
(defun ls-lisp-classify-file (filename fattr)
|
|
"Append a character to FILENAME indicating the file type.
|
|
|
|
This function puts the `dired-filename' property on FILENAME, but
|
|
not on the character indicator it appends.
|
|
FATTR is the file attributes returned by `file-attributes' for the file.
|
|
The file type indicators are `/' for directories, `@' for symbolic
|
|
links, `|' for FIFOs, `=' for sockets, `*' for regular files that
|
|
are executable, and nothing for other types of files."
|
|
(let* ((type (file-attribute-type fattr))
|
|
(modestr (file-attribute-modes fattr))
|
|
(typestr (substring modestr 0 1))
|
|
(file-name (propertize filename 'dired-filename t)))
|
|
(cond
|
|
(type
|
|
(concat file-name (if (eq type t) "/" "@")))
|
|
((string-match "x" modestr)
|
|
(concat file-name "*"))
|
|
((string= "p" typestr)
|
|
(concat file-name "|"))
|
|
((string= "s" typestr)
|
|
(concat file-name "="))
|
|
(t file-name))))
|
|
|
|
(defun ls-lisp-classify (filedata)
|
|
"Append a character to file name in FILEDATA indicating the file type.
|
|
|
|
FILEDATA has the form (FILENAME . ATTRIBUTES), where ATTRIBUTES is the
|
|
structure returned by `file-attributes' for that file.
|
|
|
|
The file type indicators are `/' for directories, `@' for symbolic
|
|
links, `|' for FIFOs, `=' for sockets, `*' for regular files that
|
|
are executable, and nothing for other types of files."
|
|
(let ((file-name (car filedata))
|
|
(fattr (cdr filedata)))
|
|
(cons (ls-lisp-classify-file file-name fattr) fattr)))
|
|
|
|
(defun ls-lisp-extension (filename)
|
|
"Return extension of FILENAME (ignoring any version extension)
|
|
FOLLOWED by null and full filename, SOLELY for full alpha sort."
|
|
;; Force extension sort order: `no ext' then `null ext' then `ext'
|
|
;; to agree with GNU ls.
|
|
(concat
|
|
(let* ((i (length filename)) end)
|
|
(if (= (aref filename (1- i)) ?.) ; null extension
|
|
"\0"
|
|
(while (and (>= (setq i (1- i)) 0)
|
|
(/= (aref filename i) ?.)))
|
|
(if (< i 0) "\0\0" ; no extension
|
|
(if (/= (aref filename (1+ i)) ?~)
|
|
(substring filename (1+ i))
|
|
;; version extension found -- ignore it
|
|
(setq end i)
|
|
(while (and (>= (setq i (1- i)) 0)
|
|
(/= (aref filename i) ?.)))
|
|
(if (< i 0) "\0\0" ; no extension
|
|
(substring filename (1+ i) end))))
|
|
)) "\0" filename))
|
|
|
|
(defun ls-lisp-format (file-name file-attr file-size switches time-index)
|
|
"Format one line of long ls output for file FILE-NAME.
|
|
FILE-ATTR and FILE-SIZE give the file's attributes and size.
|
|
SWITCHES and TIME-INDEX give the full switch list and time data."
|
|
(let ((file-type (file-attribute-type file-attr))
|
|
;; t for directory, string (name linked to)
|
|
;; for symbolic link, or nil.
|
|
(drwxrwxrwx (file-attribute-modes file-attr)))
|
|
(concat (if (memq ?i switches) ; inode number
|
|
(let ((inode (file-attribute-inode-number file-attr)))
|
|
(format " %18d " inode)))
|
|
;; nil is treated like "" in concat
|
|
(if (memq ?s switches) ; size in K, rounded up
|
|
;; In GNU ls, -h affects the size in blocks, displayed
|
|
;; by -s, as well.
|
|
(if (memq ?h switches)
|
|
(format "%7s "
|
|
(file-size-human-readable
|
|
;; We use 1K as "block size", although
|
|
;; most Windows volumes use 4KB to 8KB
|
|
;; clusters, and exFAT will usually have
|
|
;; clusters of 32KB or even 128KB. See
|
|
;; KB article 140365 for the details.
|
|
(* 1024.0 (fceiling (/ file-size 1024.0)))))
|
|
(format ls-lisp-filesize-b-fmt
|
|
(fceiling (/ file-size 1024.0)))))
|
|
(if (memq 'modes ls-lisp-verbosity)
|
|
drwxrwxrwx ; modes string
|
|
(substring drwxrwxrwx 0 4)) ; "d" or "-" for directory vs file
|
|
(if (memq 'links ls-lisp-verbosity)
|
|
(format "%3d" (file-attribute-link-number file-attr)))
|
|
;; Numeric uid/gid are more confusing than helpful;
|
|
;; Emacs should be able to make strings of them.
|
|
;; They tend to be bogus on non-UNIX platforms anyway so
|
|
;; optionally hide them.
|
|
(if (memq 'uid ls-lisp-verbosity)
|
|
;; uid can be a string or an integer
|
|
(let ((uid (file-attribute-user-id file-attr)))
|
|
(format (if (stringp uid)
|
|
ls-lisp-uid-s-fmt
|
|
ls-lisp-uid-d-fmt)
|
|
uid)))
|
|
(if (not (memq ?G switches)) ; GNU ls -- shows group by default
|
|
(if (or (memq ?g switches) ; UNIX ls -- no group by default
|
|
(memq 'gid ls-lisp-verbosity))
|
|
(let ((gid (file-attribute-group-id file-attr)))
|
|
(format (if (stringp gid)
|
|
ls-lisp-gid-s-fmt
|
|
ls-lisp-gid-d-fmt)
|
|
gid))))
|
|
(ls-lisp-format-file-size file-size (memq ?h switches))
|
|
" "
|
|
(ls-lisp-format-time file-attr time-index)
|
|
" "
|
|
(if (not (memq ?F switches)) ; ls-lisp-classify-file already did that
|
|
(propertize file-name 'dired-filename t)
|
|
file-name)
|
|
(if (stringp file-type) ; is a symbolic link
|
|
(concat " -> " file-type))
|
|
"\n"
|
|
)))
|
|
|
|
(defun ls-lisp-time-index (switches)
|
|
"Return time index into file-attributes according to ls SWITCHES list.
|
|
Return nil if no time switch found."
|
|
;; FJW: Default of nil is IMPORTANT and used in `ls-lisp-handle-switches'!
|
|
(cond ((memq ?c switches) 6) ; last mode change
|
|
((memq ?t switches) 5) ; last modtime
|
|
((memq ?u switches) 4))) ; last access
|
|
|
|
(defvar ls-lisp--time-locale nil
|
|
"Locale to be used for formatting file times.")
|
|
|
|
(defun ls-lisp-format-time (file-attr time-index)
|
|
"Format time for file with attributes FILE-ATTR according to TIME-INDEX.
|
|
Use the same method as ls to decide whether to show time-of-day or year,
|
|
depending on distance between file date and the current time.
|
|
All ls time options, namely c, t and u, are handled.
|
|
|
|
This function determines as side effect the locale relevant for
|
|
displaying times, by using `system-time-locale' if non-nil, and
|
|
falling back to environment variables LC_ALL, LC_TIME, and LANG."
|
|
(let* ((time (nth (or time-index 5) file-attr)) ; default is last modtime
|
|
(diff (time-subtract time nil))
|
|
;; Consider a time to be recent if it is within the past six
|
|
;; months. A Gregorian year has 365.2425 * 24 * 60 * 60 ==
|
|
;; 31556952 seconds on the average, and half of that is 15778476.
|
|
;; Write the constant explicitly to avoid roundoff error.
|
|
(past-cutoff -15778476)) ; half a Gregorian year
|
|
(condition-case nil
|
|
;; Use traditional time format in the C or POSIX locale,
|
|
;; ISO-style time format otherwise, so columns line up.
|
|
(let ((locale (or system-time-locale ls-lisp--time-locale)))
|
|
(if (not locale)
|
|
(let ((vars '("LC_ALL" "LC_TIME" "LANG")))
|
|
(while (and vars (not (setq locale (getenv (car vars)))))
|
|
(setq vars (cdr vars)))
|
|
;; Cache the locale for next calls.
|
|
(setq ls-lisp--time-locale (or locale "C"))))
|
|
(if (member locale '("C" "POSIX"))
|
|
(setq locale nil))
|
|
(format-time-string
|
|
(if (and (not (time-less-p diff past-cutoff))
|
|
(not (time-less-p 0 diff)))
|
|
(if (and locale (not ls-lisp-use-localized-time-format))
|
|
"%m-%d %H:%M"
|
|
(nth 0 ls-lisp-format-time-list))
|
|
(if (and locale (not ls-lisp-use-localized-time-format))
|
|
"%Y-%m-%d "
|
|
(nth 1 ls-lisp-format-time-list)))
|
|
time))
|
|
(error "Unk 0 0000"))))
|
|
|
|
(defun ls-lisp-format-file-size (file-size human-readable)
|
|
(if (not human-readable)
|
|
(format (if (floatp file-size)
|
|
ls-lisp-filesize-f-fmt
|
|
ls-lisp-filesize-d-fmt)
|
|
file-size)
|
|
(format " %7s" (file-size-human-readable file-size))))
|
|
|
|
(defun ls-lisp--sanitize-switches (switches)
|
|
"Convert long options of GNU \"ls\" to their short form.
|
|
Conversion is done only for flags supported by ls-lisp.
|
|
Long options not supported by ls-lisp are removed.
|
|
Supported options are: A a B C c F G g h i n R r S s t U u v X.
|
|
The l switch is assumed to be always present and cannot be turned off."
|
|
(let ((lsflags '(("-a" . "--all")
|
|
("-A" . "--almost-all")
|
|
("-B" . "--ignore-backups")
|
|
("-c" . "--time=ctime")
|
|
("-C" . "--color")
|
|
("-F" . "--classify")
|
|
("-G" . "--no-group")
|
|
("-h" . "--human-readable")
|
|
("-H" . "--dereference-command-line")
|
|
("-i" . "--inode")
|
|
("-n" . "--numeric-uid-gid")
|
|
("-r" . "--reverse")
|
|
("-R" . "--recursive")
|
|
("-s" . "--size")
|
|
("-t" . "--sort=time")
|
|
("-S" . "--sort.*[ \\\t]")
|
|
("-u" . "--time=atime")
|
|
("" . "--group-directories-first")
|
|
("" . "--author")
|
|
("" . "--escape")
|
|
("" . "--directory")
|
|
("" . "--dired")
|
|
("" . "--file-type")
|
|
("" . "--format")
|
|
("" . "--full-time")
|
|
("" . "--si")
|
|
("" . "--dereference-command-line-symlink-to-dir")
|
|
("" . "--hide")
|
|
("" . "--hyperlink")
|
|
("" . "--ignore")
|
|
("" . "--kibibytes")
|
|
("" . "--dereference")
|
|
("" . "--literal")
|
|
("" . "--hide-control-chars")
|
|
("" . "--show-control-chars")
|
|
("" . "--quote-name")
|
|
("" . "--context")
|
|
("" . "--help")
|
|
;; ("" . "--indicator-style.*[ \\\t]")
|
|
;; ("" . "--quoting-style.*[ \t\\]")
|
|
;; ("" . "--time.*[ \\\t]")
|
|
;; ("" . "--time-style.*[ \\\t]")
|
|
;; ("" . "--tabsize.*[ \\\t]")
|
|
;; ("" . "--width.*[ \\\t]")
|
|
("" . "--.*=.*[ \\\t\n]?") ;; catch all with '=' sign in
|
|
("" . "--version"))))
|
|
(dolist (f lsflags)
|
|
(if (string-match (cdr f) switches)
|
|
(setq switches (replace-match (car f) nil nil switches))))
|
|
(string-trim switches)))
|
|
|
|
(provide 'ls-lisp)
|
|
|
|
;;; ls-lisp.el ends here
|