diff options
| author | Glenn Morris | 2020-04-15 07:50:15 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-04-15 07:50:15 -0700 |
| commit | 97e48510ad4fec9ca5f576a750018a231523f7a6 (patch) | |
| tree | 06f50ebc5da12038bc4851b44946462a498ac755 /lisp/progmodes/executable.el | |
| parent | afa542c914379538f986f1428f176ffe42f62609 (diff) | |
| parent | a5f7c269075180e4531f0a784201a09b49731a27 (diff) | |
| download | emacs-97e48510ad4fec9ca5f576a750018a231523f7a6.tar.gz emacs-97e48510ad4fec9ca5f576a750018a231523f7a6.zip | |
Merge from origin/emacs-27
a5f7c26907 (origin/emacs-27) * admin/authors.el: Add an author alias.
d87a4d1f4e Limit RLIMIT_NOFILE to FD_SETSIZE on macOS
e5ca8e5e73 Fix Elisp manual entry on 'set-window-configuration'
485f24223f ; Update ChangeLog.3
8f200254fb ; Update etc/AUTHORS
c7adc851ad * admin/authors.el: Add missing author aliases.
4acdd7fe58 Fix edge case errors in filename-matching regexps
5f36e21fe5 Clarify the doc string of 'yank'
13301d4266 New function erc-track-switch-buffer-other-window
38f7538d8f New function erc-switch-to-buffer-other-window
# Conflicts:
# etc/NEWS
Diffstat (limited to 'lisp/progmodes/executable.el')
| -rw-r--r-- | lisp/progmodes/executable.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el index b42e6f73ab9..bae2bb66403 100644 --- a/lisp/progmodes/executable.el +++ b/lisp/progmodes/executable.el | |||
| @@ -155,7 +155,7 @@ See `compilation-error-regexp-alist'.") | |||
| 155 | If PROGRAM is non-nil, use that instead of \"find\"." | 155 | If PROGRAM is non-nil, use that instead of \"find\"." |
| 156 | ;; Pick file to search from location we know | 156 | ;; Pick file to search from location we know |
| 157 | (let* ((dir (file-truename data-directory)) | 157 | (let* ((dir (file-truename data-directory)) |
| 158 | (file (car (directory-files dir nil "^[^.]")))) | 158 | (file (car (directory-files dir nil "\\`[^.]")))) |
| 159 | (with-temp-buffer | 159 | (with-temp-buffer |
| 160 | (call-process (or program "find") | 160 | (call-process (or program "find") |
| 161 | nil | 161 | nil |