Blame SOURCES/0013-src-Fix-some-comments-which-referred-to-the-old-file.patch

056839
From b7a80d457904a3d677a14b7641b957c9760c03f9 Mon Sep 17 00:00:00 2001
263533
From: "Richard W.M. Jones" <rjones@redhat.com>
263533
Date: Mon, 27 Mar 2017 13:06:18 +0100
056839
Subject: [PATCH 13/23] src: Fix some comments which referred to the old
263533
 filenames.
263533
263533
Fixes commit b7c3ef13cbd9c9cd49005a32ffb70faf6f5bbe8c.
263533
---
263533
 src/top.ml  | 8 ++++----
263533
 src/top.mli | 6 +++---
263533
 2 files changed, 7 insertions(+), 7 deletions(-)
263533
263533
diff --git a/src/top.ml b/src/top.ml
263533
index 38658c6..f50e6a8 100644
263533
--- a/src/top.ml
263533
+++ b/src/top.ml
263533
@@ -30,13 +30,13 @@ module N = Libvirt.Network
263533
 
263533
 let rcfile = ".virt-toprc"
263533
 
263533
-(* Hook for XML support (see virt_top_xml.ml). *)
263533
+(* Hook for XML support (see [opt_xml.ml]). *)
263533
 let parse_device_xml : (int -> [>`R] D.t -> string list * string list) ref =
263533
   ref (
263533
     fun _ _ -> [], []
263533
   )
263533
 
263533
-(* Hooks for CSV support (see virt_top_csv.ml). *)
263533
+(* Hooks for CSV support (see [opt_csv.ml]). *)
263533
 let csv_start : (string -> unit) ref =
263533
   ref (
263533
     fun _ -> failwith (s_"virt-top was compiled without support for CSV files")
263533
@@ -46,7 +46,7 @@ let csv_write : (string list -> unit) ref =
263533
     fun _ -> ()
263533
   )
263533
 
263533
-(* Hook for calendar support (see virt_top_calendar.ml). *)
263533
+(* Hook for calendar support (see [opt_calendar.ml]). *)
263533
 let parse_date_time : (string -> float) ref =
263533
   ref (
263533
     fun _ ->
263533
@@ -345,7 +345,7 @@ OPTIONS" in
263533
 
263533
   (* This tuple of static information is called 'setup' in other parts
263533
    * of this program, and is passed to other functions such as redraw and
263533
-   * main_loop.  See virt_top_main.ml.
263533
+   * main_loop.  See [main.ml].
263533
    *)
263533
   (conn,
263533
    !batch_mode, !script_mode, !csv_enabled, !stream_mode, (* immutable modes *)
263533
diff --git a/src/top.mli b/src/top.mli
263533
index 3ad0718..b0953dd 100644
263533
--- a/src/top.mli
263533
+++ b/src/top.mli
263533
@@ -17,15 +17,15 @@
263533
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
263533
 *)
263533
 
263533
-(* Hook for virt_top_xml to override (if present). *)
263533
+(* Hook for [Opt_xml] to override (if present). *)
263533
 val parse_device_xml :
263533
   (int -> [ `R ] Libvirt.Domain.t -> string list * string list) ref
263533
 
263533
-(* Hooks for virt_top_csv to override (if present). *)
263533
+(* Hooks for [Opt_csv] to override (if present). *)
263533
 val csv_start : (string -> unit) ref
263533
 val csv_write : (string list -> unit) ref
263533
 
263533
-(* Hook for virt_top_calendar to override (if present). *)
263533
+(* Hook for [Opt_calendar] to override (if present). *)
263533
 val parse_date_time : (string -> float) ref
263533
 
263533
 type setup =
263533
-- 
056839
2.31.1
263533