]> git.eshelyaron.com Git - emacs.git/commitdiff
* Fix typo name plus make error homogeneous in `comp-trampoline-compile'
authorAndrew Whatson <whatson@gmail.com>
Sat, 10 Oct 2020 08:13:26 +0000 (10:13 +0200)
committerAndrea Corallo <akrl@sdf.org>
Sat, 10 Oct 2020 08:29:14 +0000 (10:29 +0200)
* lisp/emacs-lisp/comp.el (comp-trampoline-compile): Fix typo
renaming `comp-tampoline-compile' -> `comp-trampoline-compile'.
Change error to be consistent.
(comp-subr-trampoline-install): Use `comp-trampoline-compile'.

lisp/emacs-lisp/comp.el

index 763d44a23e17b3af7de56d1dedaaeffefa7c576f..0445fc085e1d7f060281e2b585a546e106fd50cf 100644 (file)
@@ -2580,7 +2580,7 @@ Return the its filename if found or nil otherwise."
    when (file-exists-p filename)
      do (cl-return filename)))
 
-(defun comp-tampoline-compile (subr-name)
+(defun comp-trampoline-compile (subr-name)
   "Synthesize and compile a trampoline for SUBR-NAME and return its filename."
   (let ((trampoline-sym (comp-trampoline-sym subr-name))
         (lambda-list (comp-make-lambda-list-from-subr
@@ -2610,7 +2610,7 @@ Return the its filename if found or nil otherwise."
                        comp-native-version-dir))
       when (file-writable-p f)
         do (cl-return f)
-      finally (error "Can't find a writable directory in \
+      finally (error "Cannot find suitable directory for output in \
 `comp-eln-load-path'")))))
 
 ;;;###autoload
@@ -2621,7 +2621,7 @@ Return the its filename if found or nil otherwise."
     (let ((trampoline-sym (comp-trampoline-sym subr-name)))
       (cl-assert (subr-primitive-p (symbol-function subr-name)))
       (load (or (comp-search-trampoline subr-name)
-                (comp-tampoline-compile subr-name))
+                (comp-trampoline-compile subr-name))
             nil t)
       (cl-assert
        (subr-native-elisp-p (symbol-function trampoline-sym)))