svn commit: r264459 - head/usr.bin/units

Eitan Adler eadler at FreeBSD.org
Mon Apr 14 14:40:12 UTC 2014


Author: eadler
Date: Mon Apr 14 14:40:12 2014
New Revision: 264459
URL: http://svnweb.freebsd.org/changeset/base/264459

Log:
  units(1): parse config file after setting defaults
  
  Parse the config file after setting the defaults to permit the user to change
  things (e.g., editing mode)

Modified:
  head/usr.bin/units/units.c

Modified: head/usr.bin/units/units.c
==============================================================================
--- head/usr.bin/units/units.c	Mon Apr 14 14:04:59 2014	(r264458)
+++ head/usr.bin/units/units.c	Mon Apr 14 14:40:12 2014	(r264459)
@@ -724,11 +724,11 @@ main(int argc, char **argv)
 
 	inhistory = history_init();
 	el = el_init(argv[0], stdin, stdout, stderr);
-	el_source(el, NULL);
 	el_set(el, EL_PROMPT, &prompt);
 	el_set(el, EL_EDITOR, "emacs");
 	el_set(el, EL_SIGNAL, 1);
 	el_set(el, EL_HIST, history, inhistory);
+	el_source(el, NULL);
 	history(inhistory, &ev, H_SETSIZE, 800);
 	if (inhistory == 0)
 		err(1, "Could not initalize history");


More information about the svn-src-all mailing list