Skip to content

Commit

Permalink
revert function name to ess-mpi-handle-messages
Browse files Browse the repository at this point in the history
as requested by @vspinu, but for now, leave the mpi delimiter variables names
double-dashed as explicitly requested by @lionel-
  • Loading branch information
dankessler committed Feb 3, 2022
1 parent 775e541 commit 7f1e984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lisp/ess-tracebug.el
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ value from EXPR and then sent to the subprocess."
((string= el "t") t)
(t el)))

(defun ess--mpi-handle-messages (buf)
(defun ess-mpi-handle-messages (buf)
"Handle all mpi messages in BUF and delete them.
The MPI message has the form \001TYPE\002FIELD...\003 where TYPE
is the type of the messages on which handlers in
Expand Down Expand Up @@ -1327,7 +1327,7 @@ prompts."
;; Incomplete mpi should hardly happen. Only on those rare occasions
;; when an mpi is issued after a long task and split by the Emacs input
;; handler, or mpi printing itself takes very long.
(unless (eq :incomplete (ess--mpi-handle-messages abuf))
(unless (eq :incomplete (ess-mpi-handle-messages abuf))
(with-current-buffer abuf
;; Uncomment this line when debugging. This pops up the
;; accumulation buffer and causes point to follow
Expand Down

0 comments on commit 7f1e984

Please sign in to comment.