diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-06-05 21:23:40 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-06-06 15:08:40 -0400 |
commit | 432230a18783fca060535698e087641a69ab1bf2 (patch) | |
tree | bdacabc761415b94f595cb221a5756582714245b | |
parent | b3914f6ed1133b8676d1468f578041e7aaa956e8 (diff) | |
download | piem-432230a18783fca060535698e087641a69ab1bf2.tar.gz |
Condense format string of process buffer header
It messes with my comment heading navigation, and it's readable enough
when packed into a single line.
-rw-r--r-- | piem.el | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -179,11 +179,7 @@ intended to be used by libraries implementing a function for (setq default-directory (file-name-as-directory dir)) (display-buffer buffer) (let ((inhibit-read-only t)) - (insert (format " -%s -;;; process: %S -;;; directory: %s -" + (insert (format "\n%s\n;;; process: %S\n;;; directory: %s\n" (char-to-string 12) ; form feed (cons program program-args) default-directory)) |