Lines 112-125
readcmd_handle_line(char *line, char **ap, size_t len)
Link Here
|
112 |
* will not modify the length of the string */ |
112 |
* will not modify the length of the string */ |
113 |
offset = sl->text - s; |
113 |
offset = sl->text - s; |
114 |
remainder = backup + offset; |
114 |
remainder = backup + offset; |
115 |
rmescapes(remainder); |
|
|
116 |
setvar(*ap, remainder, 0); |
115 |
setvar(*ap, remainder, 0); |
117 |
|
116 |
|
118 |
return; |
117 |
return; |
119 |
} |
118 |
} |
120 |
|
119 |
|
121 |
/* set variable to field */ |
120 |
/* set variable to field */ |
122 |
rmescapes(sl->text); |
|
|
123 |
setvar(*ap, sl->text, 0); |
121 |
setvar(*ap, sl->text, 0); |
124 |
sl = sl->next; |
122 |
sl = sl->next; |
125 |
} while (*++ap); |
123 |
} while (*++ap); |
126 |
- |
|
|