diff options
author | monsta <[email protected]> | 2016-11-06 14:42:18 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-11-06 14:42:18 +0300 |
commit | 65371f53dbb06180b750dad7c19e7bcf0f8651d6 (patch) | |
tree | 0b387d0a17207e13ce662da55970c97b50bc55db /plugin-loaders/python/bindings/plumacommands.defs | |
parent | 7dd02941b3647477dfe0cf8177c2eeff8bfe7b84 (diff) | |
download | pluma-65371f53dbb06180b750dad7c19e7bcf0f8651d6.tar.bz2 pluma-65371f53dbb06180b750dad7c19e7bcf0f8651d6.tar.xz |
drop Python plugins support and --enable-python build option
it requires PyGTK so won't even build with GTK+3
but keep plugins themselves for future porting to libpeas
Diffstat (limited to 'plugin-loaders/python/bindings/plumacommands.defs')
-rw-r--r-- | plugin-loaders/python/bindings/plumacommands.defs | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/plugin-loaders/python/bindings/plumacommands.defs b/plugin-loaders/python/bindings/plumacommands.defs deleted file mode 100644 index 241b52d6..00000000 --- a/plugin-loaders/python/bindings/plumacommands.defs +++ /dev/null @@ -1,45 +0,0 @@ -;; -*- scheme -*- -; object definitions ... -;; Enumerations and flags ... - - -;; From ../../pluma/pluma-commands.h - -(define-function load_uri - (c-name "pluma_commands_load_uri") - (return-type "none") - (parameters - '("PlumaWindow*" "window") - '("const-gchar*" "uri") - '("const-PlumaEncoding*" "encoding") - '("gint" "line_pos") - ) -) - -(define-function load_uris - (c-name "pluma_commands_load_uris") - (return-type "gint") - (parameters - '("PlumaWindow*" "window") - '("const-GSList*" "uris") - '("const-PlumaEncoding*" "encoding") - '("gint" "line_pos") - ) -) - -(define-function save_document - (c-name "pluma_commands_save_document") - (return-type "none") - (parameters - '("PlumaWindow*" "window") - '("PlumaDocument*" "document") - ) -) - -(define-function save_all_documents - (c-name "pluma_commands_save_all_documents") - (return-type "none") - (parameters - '("PlumaWindow*" "window") - ) -) |