[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] org-src: Improve the name of source editing buffers
From: |
Rudolf Adamkovič |
Subject: |
[PATCH] org-src: Improve the name of source editing buffers |
Date: |
Thu, 2 Mar 2023 15:02:24 +0100 |
* lisp/org-src.el (org-src--construct-edit-buffer-name): Fix the name
given to a source editing buffer. The original format was documented
as "ORG-BUFFER-NAME [ LANG ]" but in reality it was 'ORG-BUFFER-NAME[
LANG ]', with different spacing. We make the format more standard and
more compact, as well as, make the documentation match reality.
---
lisp/org-src.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/org-src.el b/lisp/org-src.el
index 9e4392811..bb894de9c 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -315,8 +315,8 @@ is 0.")
(defun org-src--construct-edit-buffer-name (org-buffer-name lang)
"Construct the buffer name for a source editing buffer.
-Format is \"*Org Src ORG-BUFFER-NAME [ LANG ]*\"."
- (concat "*Org Src " org-buffer-name "[ " lang " ]*"))
+Format is \"*Org Src ORG-BUFFER-NAME [LANG]*\"."
+ (concat "*Org Src " org-buffer-name " [" lang "]*"))
(defun org-src--edit-buffer (beg end)
"Return buffer editing area between BEG and END.
--
2.39.2
- [PATCH] org-src: Improve the name of source editing buffers,
Rudolf Adamkovič <=
- Re: [PATCH] org-src: Improve the name of source editing buffers, Rudolf Adamkovič, 2023/03/05
- Re: [PATCH] org-src: Improve the name of source editing buffers, Max Nikulin, 2023/03/06
- Re: [PATCH] org-src: Improve the name of source editing buffers, Ihor Radchenko, 2023/03/07
- Re: [PATCH] org-src: Improve the name of source editing buffers, Rudolf Adamkovič, 2023/03/07
- Re: [PATCH] org-src: Improve the name of source editing buffers, Ihor Radchenko, 2023/03/08
- Re: [PATCH] org-src: Improve the name of source editing buffers, Rudolf Adamkovič, 2023/03/08
- Re: [PATCH] org-src: Improve the name of source editing buffers, Ihor Radchenko, 2023/03/10
- Re: [PATCH] org-src: Improve the name of source editing buffers, Rudolf Adamkovič, 2023/03/14