3 <title>Debugging with GDB
</title>
4 <meta http-equiv=
"Content-Type" content=
"text/html">
5 <meta name=
"description" content=
"Debugging with GDB">
6 <meta name=
"generator" content=
"makeinfo 4.3">
7 <link href=
"http://www.gnu.org/software/texinfo/" rel=
"generator-home">
12 Node:
<a name=
"Readline%20Arguments">Readline Arguments
</a>,
13 Next:
<a rel=
"next" accesskey=
"n" href=
"Searching.html#Searching">Searching
</a>,
14 Previous:
<a rel=
"previous" accesskey=
"p" href=
"Readline-Killing-Commands.html#Readline%20Killing%20Commands">Readline Killing Commands
</a>,
15 Up:
<a rel=
"up" accesskey=
"u" href=
"Readline-Interaction.html#Readline%20Interaction">Readline Interaction
</a>
19 <h4 class=
"subsection">Readline Arguments
</h4>
21 <p>You can pass numeric arguments to Readline commands. Sometimes the
22 argument acts as a repeat count, other times it is the
<i>sign
</i> of the
23 argument that is significant. If you pass a negative argument to a
24 command which normally acts in a forward direction, that command will
25 act in a backward direction. For example, to kill text back to the
26 start of the line, you might type
<code>M-- C-k
</code>.
28 <p>The general way to pass numeric arguments to a command is to type meta
29 digits before the command. If the first `digit' typed is a minus
30 sign (
<code>-
</code>), then the sign of the argument will be negative. Once
31 you have typed one meta digit to get the argument started, you can type
32 the remainder of the digits, and then the command. For example, to give
33 the
<kbd>C-d
</kbd> command an argument of
10, you could type
<code>M-
1 0 C-d
</code>,
34 which will delete the next ten characters on the input line.