comparison src/ex_docmd.c @ 26825:3c1dcb63f579 v8.2.3941

patch 8.2.3941: SIGTSTP is not handled Commit: https://github.com/vim/vim/commit/ab16ad33ba10dd12ff6660fa57b88f1a30ddd8ba Author: dbivolaru <dbivolaru@jacobs-alumni.de> Date: Wed Dec 29 19:41:47 2021 +0000 patch 8.2.3941: SIGTSTP is not handled Problem: SIGTSTP is not handled. Solution: Handle SIGTSTP like pressing CTRL-Z. (closes https://github.com/vim/vim/issues/9422)
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 Dec 2021 20:45:03 +0100
parents 1c22fcc7415c
children 6aae8f25790a
comparison
equal deleted inserted replaced
26824:6dccddda8bbc 26825:3c1dcb63f579
107 # define ex_pclose ex_ni 107 # define ex_pclose ex_ni
108 # define ex_ptag ex_ni 108 # define ex_ptag ex_ni
109 # define ex_pedit ex_ni 109 # define ex_pedit ex_ni
110 #endif 110 #endif
111 static void ex_hide(exarg_T *eap); 111 static void ex_hide(exarg_T *eap);
112 static void ex_stop(exarg_T *eap);
113 static void ex_exit(exarg_T *eap); 112 static void ex_exit(exarg_T *eap);
114 static void ex_print(exarg_T *eap); 113 static void ex_print(exarg_T *eap);
115 #ifdef FEAT_BYTEOFF 114 #ifdef FEAT_BYTEOFF
116 static void ex_goto(exarg_T *eap); 115 static void ex_goto(exarg_T *eap);
117 #else 116 #else
6198 } 6197 }
6199 6198
6200 /* 6199 /*
6201 * ":stop" and ":suspend": Suspend Vim. 6200 * ":stop" and ":suspend": Suspend Vim.
6202 */ 6201 */
6203 static void 6202 void
6204 ex_stop(exarg_T *eap) 6203 ex_stop(exarg_T *eap)
6205 { 6204 {
6206 /* 6205 /*
6207 * Disallow suspending for "rvim". 6206 * Disallow suspending for "rvim".
6208 */ 6207 */