Skip to content

Commit

Permalink
Begin messages about executing code blocks with a capital letter
Browse files Browse the repository at this point in the history
lisp/ob-awk.el (org-babel-expand-body:awk):
lisp/ob-core.el (org-babel-execute-src-block):
lisp/ob-groovy.el (org-babel-execute:groovy):
lisp/ob-maxima.el (org-babel-execute:maxima):
lisp/ob-sed.el (org-babel-execute:sed):
Begin message with capital letter.

By Emacs' convention all messages should begin with a capital letter.
  • Loading branch information
tarsius authored and yantar92 committed Oct 7, 2022
1 parent 2f4de60 commit fc8e375
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lisp/ob-awk.el
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
(defun org-babel-execute:awk (body params)
"Execute a block of Awk code with org-babel.
This function is called by `org-babel-execute-src-block'."
(message "executing Awk source code block")
(message "Executing Awk source code block")
(let* ((result-params (cdr (assq :result-params params)))
(cmd-line (cdr (assq :cmd-line params)))
(in-file (cdr (assq :in-file params)))
Expand Down
2 changes: 1 addition & 1 deletion lisp/ob-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ guess will be made."
result exec-start-time)
(unless (fboundp cmd)
(error "No org-babel-execute function for %s!" lang))
(message "executing %s %s %s..."
(message "Executing %s %s %s..."
(capitalize lang)
(pcase executor-type
('src-block "code block")
Expand Down
2 changes: 1 addition & 1 deletion lisp/ob-groovy.el
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ parameters may be used, like groovy -v"
(defun org-babel-execute:groovy (body params)
"Execute a block of Groovy code with org-babel.
This function is called by `org-babel-execute-src-block'."
(message "executing Groovy source code block")
(message "Executing Groovy source code block")
(let* ((processed-params (org-babel-process-params params))
(session (org-babel-groovy-initiate-session (nth 0 processed-params)))
(result-params (nth 2 processed-params))
Expand Down
2 changes: 1 addition & 1 deletion lisp/ob-maxima.el
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
(defun org-babel-execute:maxima (body params)
"Execute a block of Maxima entries with org-babel.
This function is called by `org-babel-execute-src-block'."
(message "executing Maxima source code block")
(message "Executing Maxima source code block")
(let ((result-params (split-string (or (cdr (assq :results params)) "")))
(result
(let* ((cmdline (or (cdr (assq :cmdline params)) ""))
Expand Down
2 changes: 1 addition & 1 deletion lisp/ob-sed.el
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
BODY is the source inside a sed source block and PARAMS is an
association list over the source block configurations. This
function is called by `org-babel-execute-src-block'."
(message "executing sed source code block")
(message "Executing sed source code block")
(let* ((result-params (cdr (assq :result-params params)))
(cmd-line (cdr (assq :cmd-line params)))
(in-file (cdr (assq :in-file params)))
Expand Down

0 comments on commit fc8e375

Please sign in to comment.