summaryrefslogtreecommitdiffstatshomepage
path: root/nroam.el
diff options
context:
space:
mode:
authorGravatar Nicolas Petton2021-02-23 15:07:02 +0100
committerGravatar Nicolas Petton2021-02-23 15:07:02 +0100
commit0d063da15b43f880589dac1a4a333dbeb44eb988 (patch)
tree81fe2c22b2d547be164a96977628d1b32e5356c3 /nroam.el
parent8ce18feb8ee7ea0da12cf90aff2e85b0fecb592a (diff)
downloadnroam-0d063da15b43f880589dac1a4a333dbeb44eb988.tar.gz
nroam-0d063da15b43f880589dac1a4a333dbeb44eb988.zip
Call get-buffer-create with one agrument
The second argument is not available in Emacs 27.1.
Diffstat (limited to 'nroam.el')
-rw-r--r--nroam.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/nroam.el b/nroam.el
index 5120905..3125762 100644
--- a/nroam.el
+++ b/nroam.el
@@ -80,7 +80,7 @@ Make the region inserted by BODY read-only, and marked with
(defun nroam--init-work-buffer ()
"Initiate nroam hidden buffer."
- (get-buffer-create nroam-work-buffer t)
+ (get-buffer-create nroam-work-buffer)
(with-current-buffer nroam-work-buffer
(delay-mode-hooks
(org-mode))))