1
0
Fork 0

- suppressed printing of three notes.

This commit is contained in:
cage 2021-07-25 13:27:54 +02:00
parent fa12f56d10
commit dc8df6c91f
2 changed files with 10 additions and 4 deletions

View File

@ -16,6 +16,12 @@
(in-package :constants)
(defun actual-program-name ()
(declare (sb-ext:muffle-conditions sb-ext:compiler-note))
(if (string= +program-name+ "tinmop")
"tinmop"
(format nil "~a (original name: \"tinmop\")" +program-name+)))
(define-constant +help-about-message+
(format nil
"~a
@ -37,7 +43,7 @@ along with this program.
For bug report please point your browser to:
~a"
+program-name+
(actual-program-name)
+issue-tracker+)
:test #'string=)
@ -72,9 +78,7 @@ This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details."
(if (string= +program-name+ "tinmop")
"tinmop"
(format nil "~a (original name: \"tinmop\")" +program-name+))
(actual-program-name)
+issue-tracker+)
:test #'string=)

View File

@ -77,8 +77,10 @@
(defun parse-subwin-w (w-as-string)
"Parse a window width, `w-as-string' a fraction of the main window width"
(declare (sb-ext:muffle-conditions sb-ext:compiler-note))
(parse-subwin-size w-as-string (win-width *main-window*)))
(defun parse-subwin-h (h-as-string)
"Parse a window height, `h-as-string' a fraction of the main window height"
(declare (sb-ext:muffle-conditions sb-ext:compiler-note))
(parse-subwin-size h-as-string (win-height *main-window*)))