(str)
| 335 | |
| 336 | /* editing commands */ |
| 337 | function insert(str) { |
| 338 | if (str) { |
| 339 | cmd = cmd.substring(0, cursor_pos) + str + cmd.substring(cursor_pos); |
| 340 | cursor_pos += str.length; |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | function quoted_insert() { |
| 345 | quote_flag = true; |
no outgoing calls
no test coverage detected