is gedit not gEdit plues it is the default editor, not emacs ;-) (Yes, i

2001-07-16  Chema Celorio  <chema@celorio.com>

	* default-application-properties.c (possible_editors): is gedit not gEdit
	plues it is the default editor, not emacs ;-) (Yes, i MAY be a little biased
	here)
This commit is contained in:
Chema Celorio 2001-07-16 22:43:52 +00:00 committed by Jose Maria Celorio
parent c073f5c89d
commit 52934e2455
2 changed files with 21 additions and 15 deletions

View file

@ -1,3 +1,9 @@
2001-07-16 Chema Celorio <chema@celorio.com>
* default-application-properties.c (possible_editors): is gedit not gEdit
plues it is the default editor, not emacs ;-) (Yes, i MAY be a little biased
here)
2001-07-16 Richard Hestilow <hestilow@ximian.com>
* Makefile.am: Fix typo in install-data-local.

View file

@ -52,20 +52,20 @@ TerminalDescription tcurrent_info = { NULL };
EditorDescription possible_editors[] =
{
{ "Emacs", "emacs", FALSE, "executable", TRUE },
{ "XEmacs", "xemacs", FALSE, "executable", TRUE },
{ "vi", "vi", TRUE, "executable", TRUE },
{ "Go", "go", FALSE, "executable", FALSE },
{ "gEdit", "gedit", FALSE, "executable", FALSE },
{ "GWP", "gwp", FALSE, "executable", FALSE },
{ "Jed", "jed", TRUE, "executable", TRUE },
{ "Joe", "joe", TRUE, "executable", TRUE },
{ "Pico", "pico", TRUE, "executable", TRUE },
{ "vim", "vim", TRUE, "executable", TRUE },
{ "gvim", "gvim", FALSE, "executable", TRUE },
{ "ed", "ed", TRUE, "executable", FALSE },
{ "gedit", "gedit", FALSE, "executable", FALSE },
{ "Emacs", "emacs", FALSE, "executable", TRUE },
{ "XEmacs", "xemacs", FALSE, "executable", TRUE },
{ "vi", "vi", TRUE, "executable", TRUE },
{ "Go", "go", FALSE, "executable", FALSE },
{ "GWP", "gwp", FALSE, "executable", FALSE },
{ "Jed", "jed", TRUE, "executable", TRUE },
{ "Joe", "joe", TRUE, "executable", TRUE },
{ "Pico", "pico", TRUE, "executable", TRUE },
{ "vim", "vim", TRUE, "executable", TRUE },
{ "gvim", "gvim", FALSE, "executable", TRUE },
{ "ed", "ed", TRUE, "executable", FALSE },
{ "GMC/CoolEdit", "gmc -e", FALSE, "mc-internal", FALSE },
{ "Nedit", "nedit", FALSE, "executable", FALSE }
{ "Nedit", "nedit", FALSE, "executable", FALSE }
};
BrowserDescription possible_browsers[] =
@ -129,8 +129,8 @@ edit_read(void)
eoriginal_info.execution_type = gnome_config_get_string("/editor/Editor/EDITOR_TYPE");
eoriginal_info.accepts_lineno = gnome_config_get_bool_with_default("/editor/Editor/ACCEPTS_LINE_NO", NULL);
ecurrent_info.name = gnome_config_get_string("/editor/Editor/EDITNAME=Emacs");
ecurrent_info.executable_name = gnome_config_get_string("/editor/Editor/EDITOR=emacs");
ecurrent_info.name = gnome_config_get_string("/editor/Editor/EDITNAME=gedit");
ecurrent_info.executable_name = gnome_config_get_string("/editor/Editor/EDITOR=gedit");
ecurrent_info.needs_term = gnome_config_get_bool_with_default("/editor/Editor/NEEDS_TERM=FALSE", NULL);
ecurrent_info.execution_type = gnome_config_get_string("/editor/Editor/EDITOR_TYPE=executable");
ecurrent_info.accepts_lineno = gnome_config_get_bool_with_default("/editor/Editor/ACCEPTS_LINE_NO=TRUE", NULL);