<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/5ac5594e8e02155fbcd0647dbe3be8d44388949e">https://github.com/macports/macports-base/commit/5ac5594e8e02155fbcd0647dbe3be8d44388949e</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 5ac5594e8 action_notes: fix missing UI_PREFIX
</span>5ac5594e8 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 5ac5594e8e02155fbcd0647dbe3be8d44388949e
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Sat Mar 16 12:02:34 2024 +1100

<span style='display:block; white-space:pre;color:#404040;'>    action_notes: fix missing UI_PREFIX
</span>---
 src/port/port.tcl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port/port.tcl b/src/port/port.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index bb45583c9..c78a45cd4 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port/port.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port/port.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2096,7 +2096,7 @@ proc action_location { action portlist opts } {
</span> 
 
 proc action_notes { action portlist opts } {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    global UI_PREFIX global_variations
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    global macports::ui_prefix global_variations
</span> 
     if {[require_portlist portlist]} {
         return 1
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2144,12 +2144,12 @@ proc action_notes { action portlist opts } {
</span> 
         # Display the notes associated with this Portfile (if any).
         if {[dict exists $portinfo notes]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            ui_notice "$UI_PREFIX $portname has the following notes:"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            ui_notice "$ui_prefix $portname has the following notes:"
</span>             foreach note [dict get $portinfo notes] {
                 puts [wrap $note 0 "  " 1]
             }
         } else {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            ui_notice "$UI_PREFIX $portname has no notes."
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            ui_notice "$ui_prefix $portname has no notes."
</span>         }
     }
     return $status
</pre><pre style='margin:0'>

</pre>