Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

edmacro-subseq removed #58

Open
SoftwareMaven opened this issue Mar 26, 2014 · 3 comments
Open

edmacro-subseq removed #58

SoftwareMaven opened this issue Mar 26, 2014 · 3 comments

Comments

@SoftwareMaven
Copy link

On July 11, 2013, edmacro-subseq was removed, breaking the ability to view diffs in the status buffer. According to the commit log, edmacro-subseq is a re-implementation of cl-lib's cl-subseq.

@byplayer
Copy link
Owner

Thank you for your information.
I'll fix it.

@SoftwareMaven
Copy link
Author

For fun, I added the following, which allows the code to continue working. Switching to the cl version is probably the right thing, based on the direction the Emacs core is going. Would you take a pull request with such a change? Or would you prefer a stand-along re-implementation of subseq? Let me know which you prefer and I send a PR in.

(defun edmacro-subseq
    (seq start &optional end)
  (require 'cl)
  (if end
      (cl-subseq seq start end)
    (cl-subseq seq start)))

This implementation at least limits loading cl to when it is actually used. :)

@byplayer
Copy link
Owner

byplayer commented Oct 4, 2014

Thank you for your comment.

Could you send me pull request?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants