diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-02 20:00:45 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-09 20:29:23 +0100 |
commit | acc911ae724d42aaa2fecaa6f9b30651a91ad240 (patch) | |
tree | 69abdd4becf0c0e8cac28308da28c36b49cbfa41 /src/Makefile.am | |
parent | a395c9df173b53e095f1a20d6bc583063cdb60c7 (diff) | |
download | sciteco-acc911ae724d42aaa2fecaa6f9b30651a91ad240.tar.gz |
implemented EC command (execute operating system command) in spawn.cpp
powerful command for filtering a SciTECO buffer through an external
program. It will be described in the sciteco(7) man pages.
The implementation uses an asynchronous background process with
pipes but is platform independant thanks to glib's g_spawn functions,
GIOChannels and event loops.
There are however platform differences in how the operating system
command is interpreted/parsed.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 60b866e..53a2b85 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,6 +28,7 @@ libsciteco_base_a_SOURCES = main.cpp sciteco.h \ ring.cpp ring.h \ parser.cpp parser.h \ search.cpp search.h \ + spawn.cpp spawn.h \ goto.cpp goto.h \ rbtree.cpp rbtree.h \ symbols.cpp symbols.h \ |