From 5b9d6c6005fb88a02422c69a2874678915a588cc Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Fri, 13 Sep 2024 18:54:33 -0400 Subject: [PATCH] use sharp quotes where possible --- py-vterm-interaction.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-vterm-interaction.el b/py-vterm-interaction.el index cd422c9..2d8c801 100644 --- a/py-vterm-interaction.el +++ b/py-vterm-interaction.el @@ -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." @@ -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))