summaryrefslogtreecommitdiff
path: root/editors/psgml/files/patch-psgml-lucid.el
blob: 279e92369ef7e0359bef60cd39b79d530cc2621b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- psgml-lucid.el.orig	2015-11-12 06:36:57 UTC
+++ psgml-lucid.el
@@ -126,16 +126,16 @@ if the item is selected."
 		(loop for c in type collect
 		      (if (atom c)
 			  (vector (prin1-to-string c)
-				  (`(setq (, var) (, c)))
+				  `(setq ,var ,c)
 				  :style 'toggle
-				  :selected (`(eq (, var) '(, c))))
+				  :selected `(eq ,var ',c))
 			(vector (car c)
-				(`(setq (, var) '(,(cdr c))))
+				`(setq ,var ',(cdr c))
 				:style 'toggle
-				:selected (`(eq (, var) '(,(cdr c)))))))))
+				:selected `(eq ,var ',(cdr c)))))))
 	 (t
 	  (vector desc
-		  (`(sgml-do-set-option '(, var)))
+		  `(sgml-do-set-option ',var)
 		  t)))))