[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: defalias inside a defun
From: |
Stefan Monnier |
Subject: |
Re: defalias inside a defun |
Date: |
Tue, 09 Apr 2024 09:48:52 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
> (pcase seltr
> ;;------------------------------------------------------------
> ("Bash"
> (require 'avus-bash)
> (defalias 'gali-bash-zilindr #'avus-bash-zilindr
> "Insert bash constructs."))
> ;;------------------------------------------------------------
> ("Latex"
> (require 'avus-latex)
> (defalias 'gali-latex-zilindr #'avus-latex-zilindr
> "Insert latex constructs.")
> (defalias 'gali-latex-vjero #'avus-latex-vjero
> "Insert latex probability constructs.")
> (defalias 'gali-latex-ams #'avus-latex-ams
> "Insert latex ams constructs.")
> (defalias 'gali-latex-stix #'avus-latex-stix
> "Insert latex stix constructs.")) )
I don't know what's your underlying intention, but I'll point out that
Emacs can be visiting both a Bash file and a LaTeX file at the very
same time.
Stefan