summaryrefslogtreecommitdiff
path: root/editors/dedit/files/patch-src-file.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 09:33:54 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 09:33:54 +0000
commit4d34305a69677964af6498c03bc1df8c8bd0eca5 (patch)
tree159c18a041bdda0f9c3718efc741e7f3186b2f01 /editors/dedit/files/patch-src-file.c
parentRemove unmaintained expired nvi related ports (diff)
Remove unmaintained expired ports from editors
2011-05-01 editors/MathPlanner: Upstream says project is canceled and no more distfiles can be found 2011-05-01 editors/bitmap: Upstream disapear and distfile is no more available 2011-05-01 editors/bitmap-emacs21: Upstream disapear and distfile is no more available 2011-05-01 editors/cle: Upstream disapear and distfile is no more available 2011-05-01 editors/dedit: Upstream disapear and distfile is no more available 2011-05-01 editors/em: Upstream disapear and distfile is no more available 2011-05-01 editors/leim21: Distfile is no more available 2011-05-01 editors/lpe: Upstream disapear and distfile is no more available 2011-05-01 editors/vilearn: Upstream disapear and distfile is no more available 2011-05-01 editors/xenon: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273467
Diffstat (limited to 'editors/dedit/files/patch-src-file.c')
-rw-r--r--editors/dedit/files/patch-src-file.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/editors/dedit/files/patch-src-file.c b/editors/dedit/files/patch-src-file.c
deleted file mode 100644
index b2bf2a1e8e42..000000000000
--- a/editors/dedit/files/patch-src-file.c
+++ /dev/null
@@ -1,46 +0,0 @@
---- src/file.c.orig 2000-10-13 08:45:02.000000000 +0200
-+++ src/file.c 2007-11-04 00:56:29.000000000 +0100
-@@ -46,7 +46,7 @@
- static void cancel_cb(GtkWidget *widget, gpointer *data);
-
- gint fs_code;
--static GtkWidget *file_sel;
-+GtkWidget *file_sel;
-
- /*
- *
-@@ -80,7 +80,7 @@
- gtk_widget_destroy(GTK_WIDGET(file_sel));
- file_sel = NULL;
-
-- if(file_name) {
-+ if(file_name[0]) {
- dedit_new_document(NULL, file_name);
- }
-
-@@ -318,7 +318,7 @@
- gtk_widget_destroy(GTK_WIDGET(file_sel));
- file_sel = NULL;
-
-- if(tmp){
-+ if(tmp[0]){
- save_file(doc, tmp);
- }
-
-@@ -330,7 +330,6 @@
- {
- gchar *tmp;
- gint i;
-- struct stat status;
- gzFile *gzfp = NULL;
- gboolean gzMode = FALSE;
- FILE *fp = NULL;
-@@ -340,7 +339,7 @@
- gchar backup[PATH_MAX];
- gboolean bkFlag = FALSE;
-
-- struct stat st0, st1;
-+ struct stat st0;
-
- #ifdef TRACE_FUNC
- printf("save_file()\n");