You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; Emacs does menus via keymaps. Do it in a function in case we;; later decide to add it to inferior Tcl mode as well.
(defuntcl-add-emacs-menu (map)
(define-key map [menu-bar] (make-sparse-keymap"Tcl"))
;; This fails in Emacs 19.22 and earlier.
(require'lmenu)
(let ((menu (make-lucid-menu-keymap "Tcl" tcl-xemacs-menu)))
(define-key map [menu-bar tcl] (cons"Tcl"menu))
;; The following is intended to compute the key sequence;; information for the menu. It doesn't work.
(x-popup-menunilmenu)))
I'm on NixOS, and here is the devshell used (note I needed to manually type sudo ln -s $(which chmod) /bin/chmod due to a previous bug)
output of ./configure:
┬─[qd@grindenstern:~/P/s/PVS]─[08:55:15 AM]─[G:master=]
╰─>$ ./configure
checking build system type... x86_64-pc-linux-gnu
checking pvspath... found "/home/qd/Projects/sri-summer-school/PVS/pvs.in"
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for ld... ld
checking for ar... ar
checking for ranlib... ranlib
checking for emacs... emacs
checking for xemacs... no
checking for emacs version >= 19... found 29.3
checking for grep... grep
checking for etags... etags
checking for mkdir... mkdir
checking for a thread-safe mkdir -p... /nix/store/php4qidg2bxzmm79vpri025bqi0fa889-coreutils-9.5/bin/mkdir -p
checking for tar... tar
checking for rm... rm
checking for curl... curl
checking for git... git
checking for sbcl... sbcl
configure: creating ./config.status
config.status: creating Makefile
config.status: creating pvs
config.status: creating pvsio
config.status: creating proveit
config.status: creating provethem
config.status: creating pvs-get-patches
config.status: creating doc/api/Makefile
config.status: creating doc/user-guide/Makefile
config.status: creating doc/language/Makefile
config.status: creating doc/language/pvs-doc.el
config.status: creating doc/prover/Makefile
config.status: creating lib/registry.conf
make seems to raise no errors
I will note that it collides with my system emacs, but when I make it not do that (like by downdating the emacs that pvs builds to 28) there's another error (which seems worse)
The text was updated successfully, but these errors were encountered:
I built from source (a294095), and when I open the pvs emacs build I get this:
When I open up a
.pvs
file, and try typechecking, I getSymbol's value as variable is void: pvs-in-evaluator
here:
I notice that melpa has
imenus
, but notlmenu
.I'm on NixOS, and here is the devshell used (note I needed to manually type
sudo ln -s $(which chmod) /bin/chmod
due to a previous bug)output of
./configure
:make
seems to raise no errorsI will note that it collides with my system emacs, but when I make it not do that (like by downdating the emacs that pvs builds to 28) there's another error (which seems worse)
The text was updated successfully, but these errors were encountered: