branch: elpa/popup commit cc411819d4c0d1df61949f1dda067aac6c18ec17 Author: Codruț Constantin Gușoi <mail+...@codrut.pro> Commit: Codruț Constantin Gușoi <mail+...@codrut.pro>
Fix emacs native compilation warning ``` ■ Warning (comp): popup.el:46:2: Warning: docstring wider than 80 characters ``` To reproduce, have emacs built with native compilation and notice the compilation logs. You can then open the offending file and run `M-x emacs-lisp-native-compile-and-load` before and after the changes to see the warning is removed. --- popup.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popup.el b/popup.el index 7812b867bd..c65118da6a 100644 --- a/popup.el +++ b/popup.el @@ -42,7 +42,7 @@ ;;; Utilities (defun popup-calculate-max-width (max-width) - "Determines whether the width with MAX-WIDTH desired is character or window \ + "Determines whether the width with MAX-WIDTH desired is character or window proportion based, And return the result." (cl-typecase max-width (integer max-width)