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

Cleanup #369

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 9 additions & 1 deletion contrib/sly-autodoc.el
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@
(cond (multilinep message)
(t (sly-oneliner (sly-autodoc--canonicalize-whitespace message)))))))

(defalias 'sly--font-lock-ensure ; `font-lock-ensure' is not in Emacs 24.3.
(if (fboundp 'font-lock-ensure)
#'font-lock-ensure
(with-no-warnings
(lambda (&optional _beg _end)
(when font-lock-mode
(font-lock-fontify-buffer))))))

(defun sly-autodoc--fontify (string)
"Fontify STRING as `font-lock-mode' does in Lisp mode."
(with-current-buffer (get-buffer-create (sly-buffer-name :fontify :hidden t))
Expand All @@ -97,7 +105,7 @@
(lisp-mode-variables t))
(insert string)
(let ((font-lock-verbose nil))
(font-lock-fontify-buffer))
(sly--font-lock-ensure))
(goto-char (point-min))
(when (re-search-forward "===> \\(\\(.\\|\n\\)*\\) <===" nil t)
(let ((highlight (match-string 1)))
Expand Down
2 changes: 1 addition & 1 deletion contrib/sly-fancy-trace.el
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The result is a string."
(sly-read-from-minibuffer "(Un)trace: " (prin1-to-string spec)))
(t
(sly-dcase spec
((setf n)
((setf _n)
(sly-read-from-minibuffer "(Un)trace: " (prin1-to-string spec)))
((:defun n)
(sly-read-from-minibuffer "(Un)trace: " (prin1-to-string n)))
Expand Down
4 changes: 2 additions & 2 deletions contrib/sly-mrepl.el
Original file line number Diff line number Diff line change
Expand Up @@ -528,8 +528,8 @@ REPL. POP-TO-BUFFER says whether to pop the REPL buffer."
(cl-defun sly-mrepl--copy-objects-to-repl
(method-args &key before after (pop-to-buffer t))
"Recall objects in the REPL history as a new entry.
METHOD-ARGS are SLYNK-MREPL:COPY-TO-REPL's optional args. If nil
, consider the globally saved objects that
METHOD-ARGS are SLYNK-MREPL:COPY-TO-REPL's optional args. If nil,
consider the globally saved objects that
SLYNK-MREPL:GLOBALLY-SAVE-OBJECT stored. Otherwise, it is a
list (ENTRY-IDX VALUE-IDX). BEFORE and AFTER as in
`sly-mrepl--save-and-copy-for-repl' POP-TO-BUFFER as in
Expand Down
6 changes: 3 additions & 3 deletions contrib/sly-package-fu.el
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ use `sly-export-symbol-representation-function'.")
(sly-eval `(slynk:unexport-symbol-for-emacs ,symbol ,package)))


(defun sly-find-possible-package-file (buffer-file-name)
(defun sly-find-possible-package-file (file-name)
(cl-labels ((file-name-subdirectory (dirname)
(expand-file-name
(concat (file-name-as-directory (sly-to-lisp-filename dirname))
Expand All @@ -95,8 +95,8 @@ use `sly-export-symbol-representation-function'.")
(concat dirname package-file-name))))
(when (file-readable-p f)
(cl-return f))))))
(when buffer-file-name
(let ((buffer-cwd (file-name-directory buffer-file-name)))
(when file-name
(let ((buffer-cwd (file-name-directory file-name)))
(or (try buffer-cwd)
(try (file-name-subdirectory buffer-cwd))
(try (file-name-subdirectory
Expand Down