diff options
| author | Lars Ingebrigtsen | 2021-09-21 22:11:43 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-09-21 22:11:43 +0200 |
| commit | 85e9e5f616fb0fd0819a04006d6d2a0fb6d93ad7 (patch) | |
| tree | c70d2f6d0d1d80892841f2110d69315fde55515d /src/process.c | |
| parent | 636e082e451aacb881a94b6c5b3dafb15d7eaa3d (diff) | |
| download | emacs-85e9e5f616fb0fd0819a04006d6d2a0fb6d93ad7.tar.gz emacs-85e9e5f616fb0fd0819a04006d6d2a0fb6d93ad7.zip | |
Don't quote nil and t in doc strings and comments
* test/src/minibuf-tests.el (test-try-completion-ignore-case):
* test/lisp/url/url-auth-tests.el
(url-auth-test-digest-auth-retrieve-cache):
* test/lisp/subr-tests.el (subr-tests-add-hook-depth):
* test/lisp/so-long-tests/so-long-tests.el
(so-long-tests-invisible-buffer-function):
* test/lisp/emacs-lisp/tabulated-list-test.el (tabulated-list-sort):
* src/xfaces.c:
* src/process.c (Finterrupt_process):
(syms_of_process):
* src/minibuf.c (Fread_from_minibuffer):
(Fcompleting_read):
(syms_of_minibuf):
* src/dispnew.c (syms_of_display):
* src/data.c:
* lisp/so-long.el (so-long--hack-local-variables):
* lisp/progmodes/elisp-mode.el (elisp--xref-find-definitions):
(elisp--xref-find-definitions):
* lisp/org/ox-html.el (org-html-htmlize-output-type):
* lisp/org/org-agenda.el (org-agenda-do-in-region):
* lisp/net/tramp.el:
* lisp/minibuffer.el (set-minibuffer-message):
* lisp/isearch.el (isearch-wrap-pause):
(isearch-repeat-on-direction-change):
* lisp/emacs-lisp/timer.el (timer):
* lisp/emacs-lisp/package.el (package-read-archive-contents):
* lisp/emacs-lisp/faceup.el (faceup-next-property-change):
* lisp/emacs-lisp/comp.el (comp-func):
* lisp/emacs-lisp/comp-cstr.el (comp-cstr-empty-p):
* lisp/emacs-lisp/cl-macs.el (cl-do):
(cl-do*):
(cl--self-tco):
* lisp/emacs-lisp/bytecomp.el (byte-compile-unresolved-functions):
(byte-compile-cond-jump-table): Don't quote t and nil.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index bfca165fcad..58347a154a3 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -6887,7 +6887,7 @@ If CURRENT-GROUP is `lambda', and if the shell owns the terminal, | |||
| 6887 | don't send the signal. | 6887 | don't send the signal. |
| 6888 | 6888 | ||
| 6889 | This function calls the functions of `interrupt-process-functions' in | 6889 | This function calls the functions of `interrupt-process-functions' in |
| 6890 | the order of the list, until one of them returns non-`nil'. */) | 6890 | the order of the list, until one of them returns non-nil. */) |
| 6891 | (Lisp_Object process, Lisp_Object current_group) | 6891 | (Lisp_Object process, Lisp_Object current_group) |
| 6892 | { | 6892 | { |
| 6893 | return CALLN (Frun_hook_with_args_until_success, Qinterrupt_process_functions, | 6893 | return CALLN (Frun_hook_with_args_until_success, Qinterrupt_process_functions, |
| @@ -8514,7 +8514,7 @@ thus favoring processes with lower descriptors. */); | |||
| 8514 | doc: /* List of functions to be called for `interrupt-process'. | 8514 | doc: /* List of functions to be called for `interrupt-process'. |
| 8515 | The arguments of the functions are the same as for `interrupt-process'. | 8515 | The arguments of the functions are the same as for `interrupt-process'. |
| 8516 | These functions are called in the order of the list, until one of them | 8516 | These functions are called in the order of the list, until one of them |
| 8517 | returns non-`nil'. */); | 8517 | returns non-nil. */); |
| 8518 | Vinterrupt_process_functions = list1 (Qinternal_default_interrupt_process); | 8518 | Vinterrupt_process_functions = list1 (Qinternal_default_interrupt_process); |
| 8519 | 8519 | ||
| 8520 | DEFVAR_LISP ("internal--daemon-sockname", Vinternal__daemon_sockname, | 8520 | DEFVAR_LISP ("internal--daemon-sockname", Vinternal__daemon_sockname, |