summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Nicolas Petton2021-02-24 22:44:20 +0100
committerGravatar Nicolas Petton2021-02-24 22:44:20 +0100
commit4de0b64cd7e0465de167569114fb489fcd001ef3 (patch)
tree34a50a2befc1aeec8096a973ce8e9068afce2e3b
parent3eb25846d4cd10f448889b7f08ea7eeee40ec698 (diff)
downloadnroam-4de0b64cd7e0465de167569114fb489fcd001ef3.tar.gz
nroam-4de0b64cd7e0465de167569114fb489fcd001ef3.zip
Add missing newline after backlink headline
-rw-r--r--nroam.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/nroam.el b/nroam.el
index 9ec003a..ff2b992 100644
--- a/nroam.el
+++ b/nroam.el
@@ -209,7 +209,7 @@ Make the region inserted by BODY read-only, and marked with
(defun nroam--insert-backlinks-heading (count)
"Insert the heading for the backlinks section with a COUNT."
(insert (if (= count 0)
- "* No linked reference"
+ "* No linked reference\n"
(format "* %s %s\n"
count
(nroam--pluralize count "linked reference")))))