]> git.wh0rd.org Git - nano.git/commitdiff
initialize the static pid_t pid in text.c, just in case
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 8 Nov 2005 16:45:22 +0000 (16:45 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 8 Nov 2005 16:45:22 +0000 (16:45 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3107 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index 65c037a024b447c4c2fd29b9aa5ce4356e441d4e..e836203e47ef45e6b13512553bc92f9b0273a300 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -73,13 +73,13 @@ CVS code -
          nanogetstr() (renamed get_prompt_string()), statusq() (renamed
          do_prompt()), statusq_abort() (renamed do_prompt_abort()), and
          do_yesno() (renamed do_yesno_prompt()). (DLR)
+       - Initialize the static pid_t pid in text.c. (DLR)
 - chars.c:
   mbwidth()
        - If wcwidth() returns -1 for the character passed in, treat the
          character as having the width of Unicode U+FFFD (Replacement
-         Character) instead of having zero width, since there are
-         display problems that sometimes crop up with the latter
-         approach. (DLR)
+         Character) instead of having a width of zero, since display
+         problems can crop up with the latter approach. (DLR)
 - files.c:
   read_file()
        - Remove apparently unneeded logic to handle a case where
index 3063ab03d3c9122ab44933945b0300333a80628d..252ced8a161d352c2caf039834a7a927f6d69818 100644 (file)
 #include "proto.h"
 
 #ifndef NANO_SMALL
-static pid_t pid;
-       /* The PID of the newly forked process in execute_command().  It
-        * must be global because the cancel_command() signal handler
-        * needs it. */
+static pid_t pid = -1;
+       /* The PID of the newly forked process in execute_command(), for
+        * use with the cancel_command() signal handler. */
 #endif
 #ifndef DISABLE_WRAPPING
 static bool same_line_wrap = FALSE;