diff options
| author | Glenn Morris | 2018-04-20 18:55:04 -0400 |
|---|---|---|
| committer | Glenn Morris | 2018-04-20 18:55:04 -0400 |
| commit | 18de2ada243653ece98b18044233e5d29eee5903 (patch) | |
| tree | dbac02f9fa7ee6e7f6bd592bd2f775be4cdcf5f6 /lisp/completion.el | |
| parent | 9c3eeba4db26ddaeead100beea7a96f9fa640918 (diff) | |
| download | emacs-18de2ada243653ece98b18044233e5d29eee5903.tar.gz emacs-18de2ada243653ece98b18044233e5d29eee5903.zip | |
More alias-related tedium
* lisp/comint.el (comint-scroll-to-bottom-on-output):
* lisp/completion.el (cmpl-syntax-table):
* lisp/erc/erc-button.el (erc-button-google-url):
* lisp/font-lock.el (font-lock-reference-face):
* lisp/hfy-cmap.el (hfy-fallback-colour-map, hfy-rgb-txt-colour-map):
* lisp/isearch.el (isearch-regexp-function, isearch-new-word):
* lisp/startup.el (argv):
* lisp/version.el (emacs-bzr-version):
* lisp/org/org.el (org-CUA-compatible)
(org-popup-calendar-for-date-prompt):
Move aliases before targets, to silence new compiler warning.
Diffstat (limited to 'lisp/completion.el')
| -rw-r--r-- | lisp/completion.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/completion.el b/lisp/completion.el index ff942940861..2ddf0999e43 100644 --- a/lisp/completion.el +++ b/lisp/completion.el | |||
| @@ -518,6 +518,9 @@ Used to decide whether to save completions.") | |||
| 518 | (modify-syntax-entry char "w" table))) | 518 | (modify-syntax-entry char "w" table))) |
| 519 | table)) | 519 | table)) |
| 520 | 520 | ||
| 521 | ;; Old name, non-namespace-clean. | ||
| 522 | (defvaralias 'cmpl-syntax-table 'completion-syntax-table) | ||
| 523 | |||
| 521 | (defvar completion-syntax-table completion-standard-syntax-table | 524 | (defvar completion-syntax-table completion-standard-syntax-table |
| 522 | "This variable holds the current completion syntax table.") | 525 | "This variable holds the current completion syntax table.") |
| 523 | (make-variable-buffer-local 'completion-syntax-table) | 526 | (make-variable-buffer-local 'completion-syntax-table) |
| @@ -2360,8 +2363,7 @@ if ARG is omitted or nil." | |||
| 2360 | (completion-def-wrapper 'delete-backward-char :backward) | 2363 | (completion-def-wrapper 'delete-backward-char :backward) |
| 2361 | (completion-def-wrapper 'delete-backward-char-untabify :backward) | 2364 | (completion-def-wrapper 'delete-backward-char-untabify :backward) |
| 2362 | 2365 | ||
| 2363 | ;; Old names, non-namespace-clean. | 2366 | ;; Old name, non-namespace-clean. |
| 2364 | (defvaralias 'cmpl-syntax-table 'completion-syntax-table) | ||
| 2365 | (defalias 'initialize-completions 'completion-initialize) | 2367 | (defalias 'initialize-completions 'completion-initialize) |
| 2366 | 2368 | ||
| 2367 | (provide 'completion) | 2369 | (provide 'completion) |