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

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