forked from pool/gnuplot
3920cf6456
- Update to 4.6.1 * Bug fixes. * Support tabulation of variable color column. * Support tabulation (set table) of pixel values from image plot styles - Remove now obsolete patches gnuplot-automake.diff and gnuplot-4.6.0-fix-format-errors.diff. OBS-URL: https://build.opensuse.org/request/show/140325 OBS-URL: https://build.opensuse.org/package/show/Publishing/gnuplot?expand=0&rev=47
22 lines
791 B
Diff
22 lines
791 B
Diff
--- ../gnuplot-4.6.1.orig/lisp/gnuplot.el 2012-09-18 23:33:37.000000000 +0200
|
|
+++ lisp/gnuplot.el 2012-11-06 11:19:15.000000000 +0100
|
|
@@ -343,15 +343,15 @@
|
|
nil
|
|
(defmacro defface (var values doc &rest args)
|
|
`(progn
|
|
- (defvar (, var) (quote (, var)))
|
|
+ (defvar ,var (quote ,var))
|
|
;; To make colors for your faces you need to set your .Xdefaults
|
|
;; or set them up ahead of time in your .emacs file.
|
|
- (make-face (, var))
|
|
+ (make-face ,var)
|
|
)))
|
|
(if (fboundp 'defcustom)
|
|
nil
|
|
(defmacro defcustom (var value doc &rest args)
|
|
- `(defvar (, var) (, value) (, doc))))))
|
|
+ `(defvar ,var ,value ,doc)))))
|
|
|
|
;; (eval-and-compile
|
|
;; (condition-case ()
|