Author: jilles
Date: Wed Nov 14 14:08:24 2012
New Revision: 243027
URL: http://svnweb.freebsd.org/changeset/base/243027

Log:
  sh: Remove an unused variable.

Modified:
  head/bin/sh/input.c
  head/bin/sh/input.h

Modified: head/bin/sh/input.c
==============================================================================
--- head/bin/sh/input.c Wed Nov 14 12:11:23 2012        (r243026)
+++ head/bin/sh/input.c Wed Nov 14 14:08:24 2012        (r243027)
@@ -99,7 +99,6 @@ char *parsenextc;             /* copy of parsefile-
 MKINIT struct parsefile basepf;        /* top level input file */
 char basebuf[BUFSIZ + 1];      /* buffer for top level input file */
 static struct parsefile *parsefile = &basepf;  /* current input file */
-int init_editline = 0;         /* editline library initialized? */
 int whichprompt;               /* 1 == PS1, 2 == PS2 */
 
 EditLine *el;                  /* cookie for editline package */

Modified: head/bin/sh/input.h
==============================================================================
--- head/bin/sh/input.h Wed Nov 14 12:11:23 2012        (r243026)
+++ head/bin/sh/input.h Wed Nov 14 14:08:24 2012        (r243027)
@@ -43,7 +43,6 @@
 extern int plinno;
 extern int parsenleft;         /* number of characters left in input buffer */
 extern char *parsenextc;       /* next character in input buffer */
-extern int init_editline;      /* 0 == not setup, 1 == OK, -1 == failed */
 
 struct alias;
 struct parsefile;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to