Skip to content

Commit e1423a5

Browse files
authored
Merge pull request #112 from KarimAziev/feature/lexical-binding
Fix issues with Emacs 29 compatibility
2 parents 9c47468 + d081ded commit e1423a5

18 files changed

+20
-21
lines changed

gh-api.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-api.el --- api definition for gh.el
1+
;;; gh-api.el --- api definition for gh.el -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2011 Yann Hodique
44

gh-auth.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-auth.el --- authentication for gh.el
1+
;;; gh-auth.el --- authentication for gh.el -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2011 Yann Hodique
44

gh-cache.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-cache.el --- caching for gh.el
1+
;;; gh-cache.el --- caching for gh.el -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2011 Yann Hodique
44

gh-comments.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-comments.el --- support for comment-enabled APIs
1+
;;; gh-comments.el --- support for comment-enabled APIs -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2014-2015 Yann Hodique
44

gh-common.el

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-common.el --- common objects for gh.el
1+
;;; gh-common.el --- common objects for gh.el -*- lexical-binding: t; no-byte-compile: t-*-
22

33
;; Copyright (C) 2011 Yann Hodique
44

@@ -109,8 +109,7 @@ sanitize API calls that need to handle potentially dirty data."
109109

110110
(cl-defmethod gh-object-read ((obj gh-object) data)
111111
(when data
112-
(gh-object-read-into obj data))
113-
target)
112+
(gh-object-read-into obj data)))
114113

115114
(cl-defmethod gh-object-reader ((obj gh-object))
116115
(apply-partially 'gh-object-read obj))

gh-gist.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-gist.el --- gist module for gh.el
1+
;;; gh-gist.el --- gist module for gh.el -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2011 Yann Hodique
44

gh-issue-comments.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-issue-comments.el --- issue comments api for github
1+
;;; gh-issue-comments.el --- issue comments api for github -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2014 Travis Thieman
44

gh-issues.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-issues.el --- issues api for github
1+
;;; gh-issues.el --- issues api for github -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2014-2015 Yann Hodique
44
;; Copyright (C) 2014 Travis Thieman

gh-oauth.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-oauth.el --- oauth module for gh.el
1+
;;; gh-oauth.el --- oauth module for gh.el -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2012 Yann Hodique
44

gh-orgs.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; gh-org.el --- orgs module for gh.el
1+
;;; gh-org.el --- orgs module for gh.el -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2012 Yann Hodique
44

0 commit comments

Comments
 (0)