Skip to content

Commit

Permalink
use sharp quotes where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
vale981 committed Sep 13, 2024
1 parent 4c14b66 commit 5b9d6c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-vterm-interaction.el
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ If the function has no arguments, the function call is run immediately."
(setq default-directory buffer-directory)))
(message "The buffer is not associated with a directory.")))

(defalias 'py-vterm-interaction-sync-wd 'py-vterm-interaction-send-cd-to-buffer-directory)
(defalias 'py-vterm-interaction-sync-wd '#py-vterm-interaction-send-cd-to-buffer-directory)

(defun py-vterm-interaction-fellow-repl-prompt-status ()
"Return REPL mode or nil if REPL is not ready for input."
Expand All @@ -648,7 +648,7 @@ If the function has no arguments, the function call is run immediately."
;;----------------------------------------------------------------------
;; Define some utility aliases but not override if the names are already used.
(unless (fboundp 'python)
(defalias 'python 'py-vterm-interaction-repl))
(defalias 'python '#py-vterm-interaction-repl))

(unless (boundp 'python-session)
(defvaralias 'python-session 'py-vterm-interaction-session))
Expand Down

0 comments on commit 5b9d6c6

Please sign in to comment.