[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/elisa 439ed1d4f8 76/98: Make executable customization s
From: |
ELPA Syncer |
Subject: |
[elpa] externals/elisa 439ed1d4f8 76/98: Make executable customization simpler |
Date: |
Wed, 17 Jul 2024 18:58:06 -0400 (EDT) |
branch: externals/elisa
commit 439ed1d4f8087914e248211261bad9c7ee40d706
Author: Sergey Kostyaev <kostyaev.sergey2@wb.ru>
Commit: Sergey Kostyaev <kostyaev.sergey2@wb.ru>
Make executable customization simpler
---
elisa.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/elisa.el b/elisa.el
index c5ff235ba9..1182c5f343 100644
--- a/elisa.el
+++ b/elisa.el
@@ -84,12 +84,12 @@
:group 'elisa
:type 'integer)
-(defcustom elisa-find-executable (executable-find "find")
+(defcustom elisa-find-executable "find"
"Path to find executable."
:group 'elisa
:type 'string)
-(defcustom elisa-tar-executable (executable-find "tar")
+(defcustom elisa-tar-executable "tar"
"Path to tar executable."
:group 'elisa
:type 'string)
@@ -263,7 +263,7 @@ If set, all quotes with similarity less than threshold will
be filtered out."
(default-directory elisa-db-directory))
(make-directory elisa-db-directory t)
(url-copy-file (elisa-sqlite-vss-download-url) file-name t)
- (process-lines elisa-tar-executable "-xf" file-name)
+ (process-lines (executable-find elisa-tar-executable) "-xf" file-name)
(delete-file file-name))
(elisa--reopen-db))
@@ -1122,7 +1122,7 @@ WHERE d.rowid in %s;"
(mapcar
#'file-name-base
(process-lines
- elisa-find-executable
+ (executable-find elisa-find-executable)
(file-truename
(file-name-concat user-emacs-directory "elpa"))
"-name" "*.info"))))))
- [elpa] externals/elisa ade7ac0af9 52/98: Update info manual parsing, (continued)
- [elpa] externals/elisa ade7ac0af9 52/98: Update info manual parsing, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 8a2c92dc34 54/98: Fix parsing info manuals, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa cecc5cb13f 55/98: Make sync parsing interactive, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 4cad3085fd 57/98: Use more async calls to prevent emacs from blocking, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa ad130b564f 60/98: Add parse file function, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa b419fb2cf2 61/98: Add code for parsing directory as an elisa collection, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa ef06534f46 62/98: Implement incremental parsing, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 0e32d7bb5c 63/98: Add async directory parsing, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa f744ce305a 67/98: Add reparse current collection command, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 9ad7827337 70/98: Fix semantic split with single chunk, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 439ed1d4f8 76/98: Make executable customization simpler,
ELPA Syncer <=
- [elpa] externals/elisa e5691f59c5 80/98: Make syncronous functions non-interactive, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa e92628390b 82/98: Update example configuration, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 39915439a4 84/98: Update installation instructions, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa fbfe3b4ae1 86/98: Merge pull request #12 from s-kostyaev/semantic-split, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 3882b9b322 87/98: Bump version, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 04d580f072 92/98: add vector- and vss-path to injected variables on async, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 1acc89545d 31/98: Merge pull request #13 from s-kostyaev/fix-builtin-manuals-parsing, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 3eff22d4b6 53/98: Use new railways for info manuals, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 503083c0fb 58/98: Truncate long lines in done message, ELPA Syncer, 2024/07/17
- [elpa] externals/elisa 25e0df1dca 65/98: Create customization group, ELPA Syncer, 2024/07/17