diff options
| author | Juri Linkov | 2023-02-08 09:34:49 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2023-02-19 19:01:33 +0200 |
| commit | 6b908773599643657c58339966ef7779f813b687 (patch) | |
| tree | 19cecfd1a5eb73a890969aae0b98712c30b786c9 | |
| parent | 25c65e6b58692a628556d5d1147d3f54ba603351 (diff) | |
| download | emacs-6b908773599643657c58339966ef7779f813b687.tar.gz emacs-6b908773599643657c58339966ef7779f813b687.zip | |
* lisp/progmodes/xref.el (xref--insert-xrefs): Remove extra space (bug#61340).
(cherry picked from commit 643a11c6e5defc0a34da1a53b64aa1e097298923)
| -rw-r--r-- | lisp/progmodes/xref.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 4db0df6c3b8..63e065e696e 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el | |||
| @@ -1126,7 +1126,7 @@ GROUP is a string for decoration purposes and XREF is an | |||
| 1126 | maximize (xref-location-line | 1126 | maximize (xref-location-line |
| 1127 | (xref-item-location xref))) | 1127 | (xref-item-location xref))) |
| 1128 | for line-format = (and max-line | 1128 | for line-format = (and max-line |
| 1129 | (format "%%%dd: " (1+ (floor (log max-line 10))))) | 1129 | (format "%%%dd:" (1+ (floor (log max-line 10))))) |
| 1130 | with item-text-props = (list 'mouse-face 'highlight | 1130 | with item-text-props = (list 'mouse-face 'highlight |
| 1131 | 'keymap xref--button-map | 1131 | 'keymap xref--button-map |
| 1132 | 'help-echo | 1132 | 'help-echo |