aboutsummaryrefslogtreecommitdiff
path: root/editor.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-07-06 19:58:57 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-07-06 19:58:57 +0200
commit071b5f3c94c4b157a153586b087229f9e6b465d3 (patch)
treeacd7a2e5c7ef332a004d6d825a2a26e197ae0ee1 /editor.h
parent913d767475110bd73ce4fe772ff2444004b8f359 (diff)
downloadvis-071b5f3c94c4b157a153586b087229f9e6b465d3.tar.gz
vis-071b5f3c94c4b157a153586b087229f9e6b465d3.tar.xz
text: remove text_load_fd and text_fd_get
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor.h b/editor.h
index 5a288b6..5192d31 100644
--- a/editor.h
+++ b/editor.h
@@ -194,6 +194,7 @@ enum Mark {
struct File {
Text *text;
const char *name;
+ bool stdin;
int refcount;
Mark marks[MARK_LAST];
File *next, *prev;
@@ -281,7 +282,6 @@ void editor_syntax_unload(Editor*);
* in another window, share the underlying text that is changes will be
* visible in both windows */
bool editor_window_new(Editor*, const char *filename);
-bool editor_window_new_fd(Editor*, int fd);
/* reload the file currently displayed in the window from disk */
bool editor_window_reload(Win*);
void editor_window_close(Win*);