/usr/lib/ocaml/lablgtk2/sourceView2Enums.ml is in liblablgtksourceview2-ocaml-dev 2.16.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | (** sourceView2 enums *)
open Gpointer
type source_search_flag = [ `VISIBLE_ONLY | `TEXT_ONLY | `CASE_INSENSITIVE ]
type source_smart_home_end_type = [ `DISABLED | `BEFORE | `AFTER | `ALWAYS ]
type source_draw_spaces_flags =
[ `SPACE | `TAB | `NEWLINE | `NBSP | `LEADING | `TEXT | `TRAILING ]
type source_completion_activation_flags = [ `INTERACTIVE | `USER_REQUESTED ]
(**/**)
external _get_tables : unit ->
source_search_flag variant_table
* source_smart_home_end_type variant_table
* source_draw_spaces_flags variant_table
* source_completion_activation_flags variant_table
= "ml_source_view2_get_tables"
let source_search_flag, source_smart_home_end_type, source_draw_spaces_flags,
source_completion_activation_flags = _get_tables ()
let source_search_flag_conv = Gobject.Data.enum source_search_flag
let source_smart_home_end_type_conv = Gobject.Data.enum source_smart_home_end_type
let source_draw_spaces_flags_conv = Gobject.Data.enum source_draw_spaces_flags
let source_completion_activation_flags_conv = Gobject.Data.enum source_completion_activation_flags
|