aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/prefs_common_dialog.c8
3 files changed, 16 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 57e25375..794fde09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-10-17
+ * src/prefs_common_dialog.c: win32: made the default editor command
+ 'notepad'.
+
+2005-10-17
+
* src/inputdialog.c: adjusted the minimum dialog size.
2005-10-17
diff --git a/ChangeLog.ja b/ChangeLog.ja
index b15ebedb..15cacb7f 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,10 @@
2005-10-17
+ * src/prefs_common_dialog.c: win32: デフォルトのエディタコマンドを
+ 'notepad' にした。
+
+2005-10-17
+
* src/inputdialog.c: 最小ダイアログサイズを調整。
2005-10-17
diff --git a/src/prefs_common_dialog.c b/src/prefs_common_dialog.c
index 649baa62..7e5522d4 100644
--- a/src/prefs_common_dialog.c
+++ b/src/prefs_common_dialog.c
@@ -2038,12 +2038,16 @@ static void prefs_other_create(void)
gtk_table_attach (GTK_TABLE (ext_table), exteditor_combo, 1, 2, 2, 3,
GTK_EXPAND | GTK_FILL, 0, 0, 0);
gtkut_combo_set_items (GTK_COMBO (exteditor_combo),
+#ifdef G_OS_WIN32
+ "notepad '%s'",
+#else
"gedit %s",
"kedit %s",
"emacs %s",
"xemacs %s",
- "kterm -e jed %s",
- "kterm -e vi %s",
+ "rxvt -e jed %s",
+ "rxvt -e vi %s",
+#endif
NULL);
exteditor_entry = GTK_COMBO (exteditor_combo)->entry;