Displaying 2 results from an estimated 2 matches for "arrnam".
Did you mean:
arrname
2015 Aug 31
0
[PATCH v5 2/2] fish: add journal-view command (RHBZ#988100)
...st_to_string s = List.fold_left (fun a b -> a ^ b) "" s;;
+
+let ops_to_pod_string () =
+ List.fold_left (fun a b -> a ^ b) ""
+ (List.map (fun (a,b) -> "=item " ^ escaped a ^ " " ^ b ^ "\n\n")
+ (deopt op));;
+
+let ops_to_c_array arrname () =
+ let decl = "static const char *const " ^ arrname ^ "[] = {\n" in
+ decl ^ String.concat ",\n"
+ (List.map (fun (a,b) -> " \"" ^ escaped a ^ "\", \"" ^ b ^ "\"")
+ (deopt op)) ^ "\n};";;
+...
2015 Aug 31
5
[PATCH v5 0/2] RFE: journal reader in guestfish
There seems to be a minor issue when user wants to run it through pager (more)
and wants cancel it. User will end up with stuck guestfish until journal-view
transfers all journal items.
Output is configurable, it's the same format as virt-log has, since both
uses same code.
Maros Zatko (2):
cat: move get_journal_field to fish/journal.c
fish: add journal-view command (RHBZ#988100)