Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gh-api.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-api.el --- api definition for gh.el
;;; gh-api.el --- api definition for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2011 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-auth.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-auth.el --- authentication for gh.el
;;; gh-auth.el --- authentication for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2011 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-cache.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-cache.el --- caching for gh.el
;;; gh-cache.el --- caching for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2011 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-comments.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-comments.el --- support for comment-enabled APIs
;;; gh-comments.el --- support for comment-enabled APIs -*- lexical-binding: t; -*-

;; Copyright (C) 2014-2015 Yann Hodique

Expand Down
5 changes: 2 additions & 3 deletions gh-common.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-common.el --- common objects for gh.el
;;; gh-common.el --- common objects for gh.el -*- lexical-binding: t; no-byte-compile: t-*-

;; Copyright (C) 2011 Yann Hodique

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

(cl-defmethod gh-object-read ((obj gh-object) data)
(when data
(gh-object-read-into obj data))
target)
(gh-object-read-into obj data)))

(cl-defmethod gh-object-reader ((obj gh-object))
(apply-partially 'gh-object-read obj))
Expand Down
2 changes: 1 addition & 1 deletion gh-gist.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-gist.el --- gist module for gh.el
;;; gh-gist.el --- gist module for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2011 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-issue-comments.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-issue-comments.el --- issue comments api for github
;;; gh-issue-comments.el --- issue comments api for github -*- lexical-binding: t; -*-

;; Copyright (C) 2014 Travis Thieman

Expand Down
2 changes: 1 addition & 1 deletion gh-issues.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-issues.el --- issues api for github
;;; gh-issues.el --- issues api for github -*- lexical-binding: t; -*-

;; Copyright (C) 2014-2015 Yann Hodique
;; Copyright (C) 2014 Travis Thieman
Expand Down
2 changes: 1 addition & 1 deletion gh-oauth.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-oauth.el --- oauth module for gh.el
;;; gh-oauth.el --- oauth module for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2012 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-orgs.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-org.el --- orgs module for gh.el
;;; gh-org.el --- orgs module for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2012 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-profile.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-profile.el --- profile support for gh.el
;;; gh-profile.el --- profile support for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2013 Yann Hodique

Expand Down
4 changes: 2 additions & 2 deletions gh-pull-comments.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-pull-comments.el --- pull request comments api for github
;;; gh-pull-comments.el --- pull request comments api for github -*- lexical-binding: t; -*-

;; Copyright (C) 2014 Toni Reina

Expand Down Expand Up @@ -53,7 +53,7 @@
(define-obsolete-function-alias
'gh-pull-comments-req-to-update 'gh-comment-req-to-update ver)
(define-obsolete-function-alias
'gh-pull-comments-req-to-create 'gh-pulls-comment-req-to-create)
'gh-pull-comments-req-to-create 'gh-pulls-comment-req-to-create ver)

(define-obsolete-function-alias
'gh-pull-comments-list 'gh-pulls-comments-list ver)
Expand Down
2 changes: 1 addition & 1 deletion gh-pulls.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-pulls.el --- pull requests module for gh.el
;;; gh-pulls.el --- pull requests module for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2011 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-repos.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-repos.el --- repos module for gh.el
;;; gh-repos.el --- repos module for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2011 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-search.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-search.el --- repository search for gh.el
;;; gh-search.el --- repository search for gh.el -*- lexical-binding: t; -*-
;; Copyright (C) 2016 Ivan Malison

;; Author: Ivan Malison <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion gh-url.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-url.el --- url wrapper for gh.el
;;; gh-url.el --- url wrapper for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2012 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh-users.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh-users.el --- users module for gh.el
;;; gh-users.el --- users module for gh.el -*- lexical-binding: t; -*-

;; Copyright (C) 2013 Yann Hodique

Expand Down
2 changes: 1 addition & 1 deletion gh.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; gh.el --- Github API client libraries
;;; gh.el --- Github API client libraries -*- lexical-binding: t; -*-

;; Copyright (C) 2011 Yann Hodique

Expand Down