We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec4cd58 commit c9190f6Copy full SHA for c9190f6
docs/limo-info.org
@@ -90,6 +90,19 @@ TBD
90
* TODO Threading
91
TBD
92
93
+* Optimization
94
+** let vs. setq
95
+How you should set variables to a values:
96
+
97
+Tests seem to show that setting values via setq is potentially
98
+slow. Mostly if there are many variables which lead to a growing of
99
+the environment. So if you have very few variables (like 3 or less),
100
+you may set them with setq, but if you have more, you should use
101
+let. Even with 3 variables it's mostly faster.
102
103
+let* translates to setq.
104
105
106
* Limo-Mode
107
There is a ~emacs/limo.el~ which contains a simple Limo-Mode for
108
emacs. I use it to write my own limo programs.
0 commit comments