help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Removing one blank line before printing documentation string


From: Heime
Subject: Removing one blank line before printing documentation string
Date: Sat, 30 Dec 2023 13:09:32 +0000

I have a documentation function called vajr-firp-doc that
calls the constant variable vajr-firp.  

Because of the newline before \\firp {PTL}, I get two blank lines
after printing (vajr-firp-doc).

How can I keep the value of vajr-firp intact, but
remove the additional blank line when doing 
"M-x vajr-firp-doc" ?


(defconst vajr-firp
  "
 \\firp {PTL}

 Portal to firp PTL.
"

(defun vajr-firp-doc ()

  ;; Print documentation about \vajr-firp.
  (:documentation
   (concat
     vajr-firp))
  )



reply via email to

[Prev in Thread] Current Thread [Next in Thread]