Commit 15dbc6ef authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

comment fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2142 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 9 additions and 8 deletions
+9 -8
...@@ -471,14 +471,15 @@ int get_translated_kbinput(int kbinput, seq_type *seq ...@@ -471,14 +471,15 @@ int get_translated_kbinput(int kbinput, seq_type *seq
/* Reset the escape counter. */ /* Reset the escape counter. */
escapes = 0; escapes = 0;
if (ascii_digits == 0) if (ascii_digits == 0)
/* Two escapes followed by a non-digit /* Two escapes followed by a non-decimal
* or a digit that would create an ASCII * digit or a decimal digit that would
* digit sequence greater than 2XX, and * create an ASCII digit sequence
* we're not in the middle of an ASCII * greater than 2XX, and we're not in
* character sequence: control character * the middle of an ASCII character
* sequence mode. Interpret the control * sequence: control character sequence
* sequence and save the corresponding * mode. Interpret the control sequence
* control character as the result. */ * and save the corresponding control
* character as the result. */
retval = get_control_kbinput(kbinput); retval = get_control_kbinput(kbinput);
else { else {
/* If we were in the middle of an ASCII /* If we were in the middle of an ASCII
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment