]> git.wh0rd.org Git - nano.git/commitdiff
A few more comment tweaks.
authorBenno Schulenberg <bensberg@justemail.net>
Tue, 13 May 2014 21:11:59 +0000 (21:11 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Tue, 13 May 2014 21:11:59 +0000 (21:11 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4878 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/files.c
src/nano.h
src/prompt.c
src/rcfile.c
src/winio.c

index edd4808f4d0ac2893045502a275cc90e35dd0ca4..33137a5ee1976367318687be45f63dea1d919c30 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@
        * src/global.c (replace_scs_for): Condense the function a bit.
        * src/help.c (help_init): No need to keep looping when two are found.
        * src/global.c: Improve compilation with --disable-browser.
+       * src/nano.h, src/*.c: A few more comment tweaks.
 
 2014-05-12  Benno Schulenberg  <bensberg@justemail.net>
        * src/text.c (do_spell): Provide startup feedback, as for the linter.
index a4c9f6b6f044c4ef158fc780d7838831ab54fbc2..834bba3d91c801f0325565bc18f49aa7bec43141 100644 (file)
@@ -2517,7 +2517,7 @@ int diralphasort(const void *va, const void *vb)
     /* Standard function brain damage: We should be sorting
      * alphabetically and case-insensitively according to the current
      * locale, but there's no standard strcasecoll() function, so we
-     * have to use multibyte strcasecmp() instead, */
+     * have to use multibyte strcasecmp() instead. */
     return mbstrcasecmp(a, b);
 }
 
index 07336b50ade1c5e12783b140b38e0e2fcf72b620..db249eef7b9f7e695a52e83534c8cea35f76043a 100644 (file)
@@ -54,7 +54,7 @@
 #include <stdarg.h>
 #endif
 
-/* Suppress warnings for __attribute__((warn_unused_result)) */
+/* Suppress warnings for __attribute__((warn_unused_result)). */
 #define IGNORE_CALL_RESULT(call) do { if (call) {} } while(0)
 
 /* Macros for flags. */
index 931792f808751337d4de6d491e4b3d8a83ff7db1..81d0979691a5f101af8ed7e8e7b9a65aef6317de 100644 (file)
@@ -319,7 +319,7 @@ void do_statusbar_output(char *output, size_t output_len, bool
                char_buf_len)))
            continue;
 
-       /* More dangerousness fun =) */
+       /* More dangerousness fun. =) */
        answer = charealloc(answer, answer_len + (char_buf_len * 2));
 
        assert(statusbar_x <= answer_len);
index 98914bda6f843cbbd3d9629a12b48cf58a25baba..99c3c45f4115822a90cb53867fff733a0e4686a5 100644 (file)
@@ -948,7 +948,7 @@ void parse_linter(char *ptr)
     if (endsyntax->linter != NULL)
        free(endsyntax->linter);
 
-    /* Let them unset the linter by using "" */
+    /* Let them unset the linter by using "". */
     if (!strcmp(ptr, "\"\""))
        endsyntax->linter = NULL;
     else
index 6300fac5582d91c4a82dff30049213517cb5cbe6..feb3f637b2ced2b6454cc96eafa871a8a5ef1fc1 100644 (file)
@@ -2000,7 +2000,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
            }
        /* If buf contains a control character, interpret it.  If buf
         * contains an invalid multibyte control character, display it
-        * as such.*/
+        * as such. */
        } else if (is_cntrl_mbchar(buf_mb)) {
            char *ctrl_buf_mb = charalloc(mb_cur_max());
            int ctrl_buf_mb_len, i;