mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-09-02 16:10:46 +02:00
experimental change to use groff instead of man2html for HTML man pages; man page updates for reserved words; fix for pattern matching bracket expression ranges; readline changes to disallow defining some recursive keyboard macros
This commit is contained in:
@@ -241,11 +241,13 @@ _rl_kill_kbd_macro (void)
|
||||
End the definition with rl_end_kbd_macro ().
|
||||
If a numeric argument was explicitly typed, then append this
|
||||
definition to the end of the existing macro, and start by
|
||||
re-executing the existing macro. */
|
||||
re-executing the existing macro.
|
||||
We don't allow recursive keyboard macro definitions or keyboard macro
|
||||
definitions while reading input from a bound macro. */
|
||||
int
|
||||
rl_start_kbd_macro (int ignore1, int ignore2)
|
||||
{
|
||||
if (RL_ISSTATE (RL_STATE_MACRODEF))
|
||||
if (RL_ISSTATE (RL_STATE_MACRODEF|RL_STATE_MACROINPUT))
|
||||
{
|
||||
_rl_abort_internal ();
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user