Skip to content

Commit

Permalink
Merge pull request #74 from jschaf/byte-warn
Browse files Browse the repository at this point in the history
Fix byte compiling warnings
  • Loading branch information
sergeyklay authored Jan 27, 2020
2 parents 66cd0cf + dc80d8e commit 5f98a78
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ESUP - Emacs Start Up Profiler

[![Build Status][actions badge]][actions link]
[![MELPA][melpa badge]][melpa link]
[![MELPA Stable][melpa-s badge]][melpa-s link]

Benchmark Emacs Startup time without ever leaving your Emacs.

Expand All @@ -13,6 +14,11 @@ Benchmark Emacs Startup time without ever leaving your Emacs.
Installation
============

Known to work with GNU Emacs 25.1 and later. Esup may work with
older versions of Emacs, but this is NOT guaranteed. Bug reports
for problems related to using Esup with older versions of
Emacs will most like not be addressed.

**With MELPA**

First, add the package repository:
Expand Down Expand Up @@ -98,3 +104,5 @@ Create a pull request with the normal Github user interface.
[actions link]: https://github.com/jschaf/esup/actions
[melpa badge]: http://melpa.org/packages/esup-badge.svg
[melpa link]: http://melpa.org/#/esup
[melpa-s badge]: https://stable.melpa.org/packages/esup-badge.svg
[melpa-s link]: https://stable.melpa.org/#/esup
6 changes: 3 additions & 3 deletions esup.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
;; Created: 19 May 2013
;; URL: http://github.com/jschaf/esup
;; Version: 0.7
;; Package-Requires: ((cl-lib "0.5") (emacs "24"))
;; Package-Requires: ((cl-lib "0.5") (emacs "25"))
;; Keywords: convenience, processes

;; This file is NOT part of GNU Emacs.
Expand Down Expand Up @@ -519,8 +519,8 @@ ARGS is a list of extra command line arguments to pass to Emacs."
'esup-timing-information)
"\n")))

(defmethod render ((obj esup-result))
"Render fields with ESUP-RESULT and return the string."
(cl-defmethod render ((obj esup-result))
"Render fields with OBJ and return the string."
(with-slots (file expression-string start-point end-point line-number
exec-time percentage)
obj
Expand Down

0 comments on commit 5f98a78

Please # to comment.