diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2022-01-11 08:50:53 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2022-01-11 08:58:39 -0800 |
commit | 68f2d772e51a0f436559bbfe26868eaca23af390 (patch) | |
tree | 95bdd364ba7667f0d20d043f1cfaf616b2c756a5 /lisp | |
parent | 8564af99b0b6785fd66dc03c21ac0d805b62efe6 (diff) | |
download | emacs-68f2d772e51a0f436559bbfe26868eaca23af390.tar.gz |
Fix userlock diagnostic
* lisp/userlock.el (ask-user-about-lock):
Fix typo (missing paren) in diagnostic.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/userlock.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/userlock.el b/lisp/userlock.el index d985cb5c8bf..a8e699385c7 100644 --- a/lisp/userlock.el +++ b/lisp/userlock.el @@ -65,7 +65,7 @@ in any way you like." opponent)) (while (null answer) (message (substitute-command-keys - "%s locked by %s: (\\`s', \\`q', \\`p', \\`?'? ") + "%s locked by %s: (\\`s', \\`q', \\`p', \\`?')? ") short-file short-opponent) (if noninteractive (error "Cannot resolve lock conflict in batch mode")) (let ((tem (let ((inhibit-quit t) |