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 9f6f4de commit dc6d973Copy full SHA for dc6d973
src/swank/commands/basic.clj
@@ -534,9 +534,8 @@ that symbols accessible in the current namespace go first."
534
(defslimefn buffer-first-change [file-name] nil)
535
536
(defn locals-for-emacs [m]
537
- (sort-by second
538
- (map #(list :name (name (first %)) :id 0
539
- :value (pr-str (second %))) m)))
+ (map-indexed #(list :name (name (first %2)) :id %
+ :value (pr-str (second %2))) m))
540
541
(defslimefn frame-catch-tags-for-emacs [n] nil)
542
(defslimefn frame-locals-for-emacs [n]
0 commit comments