update packages

This commit is contained in:
2025-02-26 20:16:44 +01:00
parent 59db017445
commit 45d49daef0
291 changed files with 16240 additions and 522600 deletions

View File

@@ -495,7 +495,7 @@ You can also add new items to any of these sub-menus by adding to the
`with-eval-after-load' blocks in your .emacs file. Here is an example of
adding the \"regis\" terminal type to the terminal sub-menu:
(with-eval-after-load 'gnuplot
(with-eval-after-load \\='gnuplot
(setq gnuplot-insertions-terminal
(append gnuplot-insertions-terminal
(list
@@ -1542,7 +1542,7 @@ updates Gnuplot with the appropriate \"set output\" command."
(gnuplot-send-hiding-output "set output\n") ; Flush output file
(sit-for 0.1) ; Hack: wait for Gnuplot IO to finish
(cl-ecase gnuplot-inline-image-mode
(nil nil)
((nil) nil)
(inline
(ignore-errors
(let ((image (create-image filename)))
@@ -2071,9 +2071,9 @@ and then starts `gnuplot-mode'.
It is convenient to bind this function to a global key sequence. For
example, to make the F10 key open a gnuplot script buffer, put the
following in your .emacs file:
(autoload 'gnuplot-make-buffer \"gnuplot\"
(autoload \\='gnuplot-make-buffer \"gnuplot\"
\"open a buffer in gnuplot mode\" t)
(global-set-key [(f10)] 'gnuplot-make-buffer)"
(global-set-key [(f10)] \\='gnuplot-make-buffer)"
(interactive)
(switch-to-buffer gnuplot-gnuplot-buffer)
(gnuplot-mode))