]> git.wh0rd.org Git - nano.git/commitdiff
revert erroneous changes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 27 Nov 2006 04:56:16 +0000 (04:56 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 27 Nov 2006 04:56:16 +0000 (04:56 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3973 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c
src/prompt.c
src/proto.h

index e25222c3f4a14341174786486307dcd595686f25..6b9e4056fc72a0d9a7027125a7800fd4d23e5424 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,6 @@
 CVS code -
 - General:
        - Miscellaneous comment fixes. (DLR)
-       - Don't allow filenames entered at the "Write File" prompt or
-         the "Insert File" prompt to contain nulls.  Changes to
-         do_statusbar_input(), do_statusbar_output(), and
-         do_statusbar_verbatim_input(). (DLR)
 - files.c:
   do_insertfile()
        - Properly handle executable commands that contain nulls. (DLR)
index e5ce3a64e9360d783c2239923f48467cc3171fc0..b9f3133eae60f4f1fe70e492e393c8c3506c5230 100644 (file)
@@ -1553,13 +1553,14 @@ void do_output(char *output, size_t output_len, bool allow_cntrls)
     current_len = strlen(openfile->current->data);
 
     while (i < output_len) {
-       /* Null to newline, if needed, and if allow_cntrls is TRUE. */
-       if (output[i] == '\0') {
-           if (allow_cntrls)
+       /* If allow_cntrls is FALSE, filter out nulls and newlines,
+        * since they're ASCII control characters. */
+       if (allow_cntrls) {
+           /* Null to newline, if needed. */
+           if (output[i] == '\0')
                output[i] = '\n';
-       /* Newline to Enter, if needed, and if allow_cntrls is TRUE. */
-       } else if (output[i] == '\n') {
-           if (allow_cntrls) {
+           /* Newline to Enter, if needed. */
+           else if (output[i] == '\n') {
                do_enter();
                i++;
                continue;
index 68336b7b3189b8acb75f3ab83b26dcd8a22044f3..67d5aa0df3bf948ade344385c000a5b5c287fd9a 100644 (file)
@@ -145,7 +145,7 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t,
         if (*s_or_t || get_key_buffer_len() == 0) {
            if (kbinput != NULL) {
                /* Display all the characters in the input buffer at
-                * once, filtering out control characters and nulls. */
+                * once, filtering out control characters. */
                char *output = charalloc(kbinput_len + 1);
                size_t i;
                bool got_enter;
@@ -156,7 +156,7 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t,
                output[i] = '\0';
 
                do_statusbar_output(output, kbinput_len, &got_enter,
-                       FALSE, FALSE);
+                       FALSE);
 
                free(output);
 
@@ -312,11 +312,11 @@ bool do_statusbar_mouse(void)
 #endif
 
 /* The user typed output_len multibyte characters.  Add them to the
- * statusbar prompt, setting got_enter to TRUE if we get a newline,
- * filtering out all ASCII control characters if allow_cntrls is TRUE,
- * and filtering out all nulls if allow_nulls is TRUE. */
+ * statusbar prompt, setting got_enter to TRUE if we get a newline, and
+ * filtering out all ASCII control characters if allow_cntrls is
+ * TRUE. */
 void do_statusbar_output(char *output, size_t output_len, bool
-       *got_enter, bool allow_cntrls, bool allow_nulls)
+       *got_enter, bool allow_cntrls)
 {
     size_t answer_len, i = 0;
     char *char_buf = charalloc(mb_cur_max());
@@ -328,14 +328,14 @@ void do_statusbar_output(char *output, size_t output_len, bool
     *got_enter = FALSE;
 
     while (i < output_len) {
-       /* Null to newline, if needed, and if allow_cntrls and
-        * allow_nulls are TRUE. */
-       if (output[i] == '\0') {
-           if (allow_cntrls && allow_nulls)
+       /* If allow_cntrls is FALSE, filter out nulls and newlines,
+        * since they're ASCII control characters. */
+       if (allow_cntrls) {
+           /* Null to newline, if needed. */
+           if (output[i] == '\0')
                output[i] = '\n';
-       /* Newline to Enter, if needed, and if allow_cntrls is TRUE. */
-       } else if (output[i] == '\n') {
-           if (allow_cntrls) {
+           /* Newline to Enter, if needed. */
+           else if (output[i] == '\n') {
                /* Set got_enter to TRUE to indicate that we got the
                 * Enter key, put back the rest of the characters in
                 * output so that they can be parsed and output again,
@@ -352,10 +352,9 @@ void do_statusbar_output(char *output, size_t output_len, bool
        i += char_buf_len;
 
        /* If allow_cntrls is FALSE, filter out an ASCII control
-        * character.  If allow_nulls is FALSE, filter out a null. */
-       if ((!allow_cntrls && is_ascii_cntrl_char(*(output + i -
-               char_buf_len))) || (!allow_nulls && *(output + i -
-               char_buf_len) == '\0'))
+        * character. */
+       if (!allow_cntrls && is_ascii_cntrl_char(*(output + i -
+               char_buf_len)))
            continue;
 
        /* More dangerousness fun =) */
@@ -677,17 +676,14 @@ void do_statusbar_verbatim_input(bool *got_enter)
     kbinput = get_verbatim_kbinput(bottomwin, &kbinput_len);
 
     /* Display all the verbatim characters at once, not filtering out
-     * control characters, and not filtering out nulls unless we're at
-     * the "Write File" prompt or the "Insert File" prompt. */
+     * control characters. */
     output = charalloc(kbinput_len + 1);
 
     for (i = 0; i < kbinput_len; i++)
        output[i] = (char)kbinput[i];
     output[i] = '\0';
 
-    do_statusbar_output(output, kbinput_len, got_enter, TRUE,
-       currshortcut != writefile_list && currshortcut !=
-       insertfile_list);
+    do_statusbar_output(output, kbinput_len, got_enter, TRUE);
 
     free(output);
 }
index c983046f1e671e6bda94d98929a7ffcdab8ba397..ed908d03821a5b1d9c10f3219bcf55a349d68451 100644 (file)
@@ -496,7 +496,7 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t,
 bool do_statusbar_mouse(void);
 #endif
 void do_statusbar_output(char *output, size_t output_len, bool
-       *got_enter, bool allow_cntrls, bool allow_nulls);
+       *got_enter, bool allow_cntrls);
 void do_statusbar_home(void);
 void do_statusbar_end(void);
 void do_statusbar_left(void);