diff options
| author | Paul Eggert | 2020-05-17 16:50:49 -0700 |
|---|---|---|
| committer | Paul Eggert | 2020-05-17 16:51:46 -0700 |
| commit | 00be23c2af4aa1bb09afc6404c5ef68997dc18f5 (patch) | |
| tree | d5708617c9deeda6debf4c23c3d4a19c7e1ceb80 /lisp/org | |
| parent | abec255c024938a40fa3c9730f602c0351e5877d (diff) | |
| download | emacs-00be23c2af4aa1bb09afc6404c5ef68997dc18f5.tar.gz emacs-00be23c2af4aa1bb09afc6404c5ef68997dc18f5.zip | |
Don’t attempt to modify constant strings
These attempts were found by ‘make compile-always’.
* lisp/language/tibet-util.el (tibetan-obsolete-glyphs):
* lisp/org/org-agenda.el (org-agenda-get-restriction-and-command):
Don’t try to modify string constants.
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/org-agenda.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index 5fe140d00ef..689d134627e 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -2995,7 +2995,8 @@ Agenda views are separated by `org-agenda-block-separator'." | |||
| 2995 | (erase-buffer) | 2995 | (erase-buffer) |
| 2996 | (insert (eval-when-compile | 2996 | (insert (eval-when-compile |
| 2997 | (let ((header | 2997 | (let ((header |
| 2998 | "Press key for an agenda command: | 2998 | (copy-sequence |
| 2999 | "Press key for an agenda command: | ||
| 2999 | -------------------------------- < Buffer, subtree/region restriction | 3000 | -------------------------------- < Buffer, subtree/region restriction |
| 3000 | a Agenda for current week or day > Remove restriction | 3001 | a Agenda for current week or day > Remove restriction |
| 3001 | t List of all TODO entries e Export agenda views | 3002 | t List of all TODO entries e Export agenda views |
| @@ -3004,7 +3005,7 @@ s Search for keywords M Like m, but only TODO entries | |||
| 3004 | / Multi-occur S Like s, but only TODO entries | 3005 | / Multi-occur S Like s, but only TODO entries |
| 3005 | ? Find :FLAGGED: entries C Configure custom agenda commands | 3006 | ? Find :FLAGGED: entries C Configure custom agenda commands |
| 3006 | * Toggle sticky agenda views # List stuck projects (!=configure) | 3007 | * Toggle sticky agenda views # List stuck projects (!=configure) |
| 3007 | ") | 3008 | ")) |
| 3008 | (start 0)) | 3009 | (start 0)) |
| 3009 | (while (string-match | 3010 | (while (string-match |
| 3010 | "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)" | 3011 | "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)" |