1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00

Allow session- or domain-specific settings for document.brose.forms.editor

This commit is contained in:
Miciah Dashiel Butler Masters 2007-08-30 21:32:21 +00:00 committed by Miciah Dashiel Butler Masters
parent 0e0bacf0d3
commit bfe6243bc1

View File

@ -603,8 +603,7 @@ textarea_edit(int op, struct terminal *term_, struct form_state *fs_,
}
if (op == 0 && !textarea_editor) {
unsigned char *ed = get_opt_str("document.browse.forms.editor",
NULL);
unsigned char *ed;
unsigned char *ex;
assert(fs_ && doc_view_ && link_ && term_);
@ -612,6 +611,7 @@ textarea_edit(int op, struct terminal *term_, struct form_state *fs_,
fn = save_textarea_file(fs_->value);
if (!fn) return;
ed = get_opt_str("document.browse.forms.editor", ses);
if (!ed || !*ed) {
ed = getenv("EDITOR");
if (!ed || !*ed) ed = "vi";