removed asterisks in buffer names

pull/4/head
Blake DeMarcy 2017-03-02 21:33:29 -06:00
parent 0c7ed6b36f
commit 103d1d3071
1 changed files with 2 additions and 2 deletions

4
bbj.el
View File

@ -314,7 +314,7 @@ is sent using C-c C-c."
(defun bbj-compose-in-window (title callback &rest cbargs) (defun bbj-compose-in-window (title callback &rest cbargs)
"Create a new buffer, pop it, set TITLE as the header line, and "Create a new buffer, pop it, set TITLE as the header line, and
assign CALLBACK to C-c C-c." assign CALLBACK to C-c C-c."
(let ((buffer (get-buffer-create "*BBJ: Compose*"))) (let ((buffer (get-buffer-create "BBJ: Compose")))
(pop-to-buffer buffer) (pop-to-buffer buffer)
(with-current-buffer buffer (with-current-buffer buffer
(erase-buffer) (erase-buffer)
@ -452,7 +452,7 @@ it worked on emacs 24."
(defun bbj-browse-index () (defun bbj-browse-index ()
(interactive) (interactive)
(let* ((inhibit-read-only t) (let* ((inhibit-read-only t)
(buffer (get-buffer-create "*BBJ Index*")) (buffer (get-buffer-create "BBJ Index"))
(response (bbj-request "thread_index")) (response (bbj-request "thread_index"))
(bbj-*usermap* (alist-get 'usermap response))) (bbj-*usermap* (alist-get 'usermap response)))
(with-current-buffer buffer (with-current-buffer buffer