branch: scratch/editorconfig-cc
commit 96f8ad419efd648cfa9ddd03e80a2b97aa533282
Author: 10sr <8.slas...@gmail.com>
Commit: Stefan Monnier <monn...@iro.umontreal.ca>

    Update debug message format (#261)
---
 editorconfig.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/editorconfig.el b/editorconfig.el
index 1b77b38947..6ead6b299a 100644
--- a/editorconfig.el
+++ b/editorconfig.el
@@ -392,7 +392,7 @@ This function will revert buffer when the coding-system has 
been changed."
   (let ((coding-system (editorconfig-merge-coding-systems end-of-line
                                                           charset)))
     (display-warning '(editorconfig editorconfig-set-coding-system-revert)
-                     (format "buffer-file-name: %S | 
buffer-file-coding-system: %S | coding-system: %S | apply-currently: %S"
+                     (format "editorconfig-set-coding-system-revert: 
buffer-file-name: %S | buffer-file-coding-system: %S | coding-system: %S | 
apply-currently: %S"
                              buffer-file-name
                              buffer-file-coding-system
                              coding-system
@@ -462,7 +462,7 @@ If you just want to check `major-mode', use 
`derived-mode-p'."
               (remote-localname (file-remote-p filename
                                                'localname)))
           (display-warning '(editorconfig 
editorconfig--execute-editorconfig-exec)
-                           (format "filename: %S | remote: %S | 
remote-localname: %S"
+                           (format "editorconfig--execute-editorconfig-exec: 
filename: %S | remote: %S | remote-localname: %S"
                                    filename
                                    remote
                                    remote-localname)
@@ -473,7 +473,7 @@ If you just want to check `major-mode', use 
`derived-mode-p'."
                 (setq filename remote-localname))
             (cd "/")))
         (display-warning '(editorconfig 
editorconfig--execute-editorconfig-exec)
-                         (format "default-directory: %S | filename: %S"
+                         (format "editorconfig--execute-editorconfig-exec: 
default-directory: %S | filename: %S"
                                  default-directory
                                  filename
                                  )
@@ -594,7 +594,7 @@ again.  Changing major mode can reset these variables.
 
 This function also executes `editorconfig-after-apply-functions' functions."
   (display-warning '(editorconfig editorconfig-major-mode-hook)
-                   (format "editorconfig-mode: %S, major-mode: %S, 
-properties-hash: %S"
+                   (format "editorconfig-major-mode-hook: editorconfig-mode: 
%S, major-mode: %S, -properties-hash: %S"
                            (and (boundp 'editorconfig-mode)
                                 editorconfig-mode)
                            major-mode
@@ -626,7 +626,7 @@ F is that function, and FILENAME and ARGS are arguments 
passed to F."
   ;; This function uses `editorconfig--cons-filename-codingsystem' to decide 
what coding-system
   ;; should be used, which will be set by 
`editorconfig--advice-find-file-noselect'.
   (display-warning '(editorconfig editorconfig--advice-insert-file-contents)
-                   (format "filename: %S args: %S codingsystem: %S 
bufferfilename: %S"
+                   (format "editorconfig--advice-insert-file-contents: 
filename: %S args: %S codingsystem: %S bufferfilename: %S"
                            filename args
                            editorconfig--cons-filename-codingsystem
                            buffer-file-name)

Reply via email to