[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/graphql c17526d9cd 31/56: Fix compile issues
From: |
ELPA Syncer |
Subject: |
[elpa] externals/graphql c17526d9cd 31/56: Fix compile issues |
Date: |
Sat, 29 Oct 2022 13:58:00 -0400 (EDT) |
branch: externals/graphql
commit c17526d9cd8f639cbbde7bf305ff7b51b9fcca76
Author: Sean Allred <code@seanallred.com>
Commit: Sean Allred <code@seanallred.com>
Fix compile issues
---
graphql.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/graphql.el b/graphql.el
index b0538e4ae9..cc2982e293 100644
--- a/graphql.el
+++ b/graphql.el
@@ -150,10 +150,10 @@ parameter."
edges))))
;; When we encounter a plain cons cell (not a list), let it pass
(`(,key . ,(and value (guard (not (consp value)))))
- data)
+ (cons key value))
;; symbols should pass unaltered
(`,(and symbol (guard (symbolp symbol)))
- data)
+ symbol)
;; everything else should be mapped
(_ (mapcar #'graphql-simplify-response-edges data))))
- [elpa] externals/graphql d299be77da 12/56: Tweak handling for numbers when encoding argument values., (continued)
- [elpa] externals/graphql d299be77da 12/56: Tweak handling for numbers when encoding argument values., ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 08fb4fcf12 13/56: Add support for operation parameters via `:op-params', ELPA Syncer, 2022/10/29
- [elpa] externals/graphql da47d83cef 14/56: Add `graphql-{query, mutation}' macros, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 22a84b1b08 15/56: Fix issue if `:op-name' and `:arguments' are given to one object, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql f43b1da554 17/56: Fix *-parameter-spec behavior when REQUIRED is omitted, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql e66ffb7743 19/56: Test suite fixes, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql e755652074 23/56: Various metadata, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 6afdd2c8c8 26/56: Update resources, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql df200ddcf5 25/56: New test to ensure we're on the correct tag, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 03d5cc4c3c 27/56: New function graphql-simplify-response-edges, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql c17526d9cd 31/56: Fix compile issues,
ELPA Syncer <=
- [elpa] externals/graphql 85eac3bbc2 20/56: Rename test file, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql b5a9df03ac 28/56: Separate top-level code-blocks with empty lines, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 164e1b021c 30/56: Merge pull request #1 from tarsius/fixup, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql f5660677d9 35/56: Add documentation, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql f32ffec1a2 37/56: Change macro syntax to be slightly more natural, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 2056967feb 38/56: More docstrings, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 72f8c90334 40/56: Merge pull request #2 from tarsiiformes/minor, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql df311b3e31 42/56: Remove '$' from planned features; it is implemented in README, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 82354bb5af 45/56: Run lints as part of CI, ELPA Syncer, 2022/10/29
- [elpa] externals/graphql 44af7744d5 48/56: Ignore generated files, ELPA Syncer, 2022/10/29