Index: configf.scm
==================================================================
--- configf.scm
+++ configf.scm
@@ -59,11 +59,11 @@
 (define configf:comment-rx (regexp "^\\s*#.*"))
 (define configf:cont-ln-rx (regexp "^(\\s+)(\\S+.*)$"))
 
 ;; read a line and process any #{ ... } constructs
 
-(define configf:var-expand-regex (regexp "^(.*)#\\{(scheme|system|shell|getenv|get|runconfigs-get)\\s+([^\\}\\{]*)\\}(.*)"))
+(define configf:var-expand-regex (regexp "^(.*)#\\{(scheme|system|shell|getenv|get|runconfigs-get|rget)\\s+([^\\}\\{]*)\\}(.*)"))
 (define (configf:process-line l ht)
   (let loop ((res l))
     (if (string? res)
 	(let ((matchdat (string-search configf:var-expand-regex res)))
 	  (if matchdat
@@ -81,10 +81,11 @@
 				 (let* ((parts (string-split cmd))
 					(sect  (car parts))
 					(var   (cadr parts)))
 				   (conc "(lambda (ht)(config-lookup ht \"" sect "\" \"" var "\"))")))
 				((runconfigs-get) (conc "(lambda (ht)(runconfigs-get ht \"" cmd "\"))"))
+				((rget)           (conc "(lambda (ht)(runconfigs-get ht \"" cmd "\"))"))
 				(else "(lambda (ht)(print \"ERROR\") \"ERROR\")"))))
 		;; (print "fullcmd=" fullcmd)
 		(with-input-from-string fullcmd
 		  (lambda ()
 		    (set! result ((eval (read)) ht))))
@@ -110,18 +111,26 @@
 
 ;; Lookup a value in runconfigs based on -reqtarg or -target
 (define (runconfigs-get config var)
   (let ((targ (or (args:get-arg "-reqtarg")(args:get-arg "-target"))))
     (if targ
-	(config-lookup config targ var)
-	#f)))
+	(or (configf:lookup config targ var)
+	    (configf:lookup config "default" var))
+	(configf:lookup config "default" var))))
 
 (define-inline (configf:read-line p ht allow-processing)
-  (if (and allow-processing 
-	   (not (eq? allow-processing 'return-string)))
-      (configf:process-line (read-line p) ht)
-      (read-line p)))
+  (let loop ((inl (read-line p)))
+    (if (and (string? inl)
+	     (not (string-null? inl))
+	     (equal? "\\" (string-take-right inl 1))) ;; last character is \ 
+	(let ((nextl (read-line p)))
+	  (if (not (eof-object? nextl))
+	      (loop (string-append inl nextl))))
+	(if (and allow-processing 
+		 (not (eq? allow-processing 'return-string)))
+	    (configf:process-line inl ht)
+	    inl))))
 
 ;; read a config file, returns hash table of alists
 
 ;; read a config file, returns hash table of alists
 ;; adds to ht if given (must be #f otherwise)

Index: tests/fdktestqa/testqa/megatest.config
==================================================================
--- tests/fdktestqa/testqa/megatest.config
+++ tests/fdktestqa/testqa/megatest.config
@@ -1,8 +1,8 @@
 [setup]
 testcopycmd cp --remove-destination -rlv TEST_SRC_PATH/. TEST_TARG_PATH/. >> TEST_TARG_PATH/mt_launch.log 2>> TEST_TARG_PATH/mt_launch.log
-# runqueue 2
+runqueue 2
 
 [include ../fdk.config]
 
 [server]
 timeout 0.01

Index: tests/fullrun/megatest.config
==================================================================
--- tests/fullrun/megatest.config
+++ tests/fullrun/megatest.config
@@ -57,10 +57,14 @@
 WACKYVAR6 #{scheme (args:get-arg "-target")}
 PREDICTABLE the_ans
 MRAH MT_RUN_AREA_HOME=#{getenv MT_RUN_AREA_HOME}
 # The empty var should have a definition with null string
 EMPTY_VAR
+
+WRAPPEDVAR This var should have the work blah thrice: \
+blah \
+blah
 
 # XTERM   [system xterm]
 # RUNDEAD [system exit 56]
 
 [server]

Index: tests/fullrun/runconfigs.config
==================================================================
--- tests/fullrun/runconfigs.config
+++ tests/fullrun/runconfigs.config
@@ -1,5 +1,8 @@
+[default]
+SOMEVAR This should show up in SOMEVAR3
+
 [include #{getenv MT_RUN_AREA_HOME}/common_runconfigs.config]
 
 # #{system echo 'VACKYVAR #{shell pwd}' > $MT_RUN_AREA_HOME/config/$USER.config}
 [include ./config/#{getenv USER}.config]
 
@@ -9,5 +12,11 @@
 [default/ubuntu/nfs]
 WACKYVAR2 #{runconfigs-get CURRENT}
 
 [ubuntu/nfs/none]
 WACKYVAR2 #{runconfigs-get CURRENT}
+SOMEVAR2  This should show up in SOMEVAR4 if the target is ubuntu/nfs/none
+
+[default]
+SOMEVAR3 #{rget SOMEVAR}
+SOMEVAR4 #{rget SOMEVAR2}
+SOMEVAR5 #{runconfigs-get SOMEVAR2}