On 2021-03-15 10:14, Uwe Brauer wrote:
Uwe Brauer <o...@mat.ucm.es> writes:
Break up the line however you wish into quoted substrings and
concat them together..?
No entirely sure that you mean by quoted substrings, can you give me
an example, please?
I am not same guy you were replying to, but:
#+begin_src emacs-lisp
(concat "Add "
"all "
"these "
"strings "
"together!")
;; result:
"Add all these strings together!"
#+end_src
I use it a lot when:
- things start to get complicated (some regexp)
- I want to maintain lines in source that will match output
- in some other cases, too.
Really helpful!
Cheers,
TRS-80