comparison src/option.c @ 2183:b0ebf9d121ff v7.2.442

updated for version 7.2.442 Problem: Copy/paste with OpenOffice doesn't work. Solution: Do not offer the HTML target when it is not supported. (James Vega)
author Bram Moolenaar <bram@vim.org>
date Sat, 05 Jun 2010 12:49:46 +0200
parents 2775dcd05603
children dc8ee74574f8
comparison
equal deleted inserted replaced
2181:f838615313cd 2183:b0ebf9d121ff
7110 clip_autoselect = new_autoselect; 7110 clip_autoselect = new_autoselect;
7111 clip_autoselectml = new_autoselectml; 7111 clip_autoselectml = new_autoselectml;
7112 clip_html = new_html; 7112 clip_html = new_html;
7113 vim_free(clip_exclude_prog); 7113 vim_free(clip_exclude_prog);
7114 clip_exclude_prog = new_exclude_prog; 7114 clip_exclude_prog = new_exclude_prog;
7115 #ifdef FEAT_GUI_GTK
7116 if (gui.in_use)
7117 {
7118 gui_gtk_set_selection_targets();
7119 gui_gtk_set_dnd_targets();
7120 }
7121 #endif
7115 } 7122 }
7116 else 7123 else
7117 vim_free(new_exclude_prog); 7124 vim_free(new_exclude_prog);
7118 7125
7119 return errmsg; 7126 return errmsg;