diff options
author | David Reitter <david.reitter@gmail.com> | 2009-03-21 02:31:29 +0000 |
---|---|---|
committer | David Reitter <david.reitter@gmail.com> | 2009-03-21 02:31:29 +0000 |
commit | bc9ebf4106f1c93ceb4b82bb0fa704dcc3d27256 (patch) | |
tree | 7ed5ce7b8b4b466115247c118d4965a62bab90a6 /lisp/cus-start.el | |
parent | e00553bf16bacd9ab51ea81f14ded352aad616bd (diff) | |
download | emacs-bc9ebf4106f1c93ceb4b82bb0fa704dcc3d27256.tar.gz |
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 9237b78e916..e2ed7585c3f 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -248,6 +248,33 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of function)) ;; msdos.c (dos-unsupported-char-glyph display integer) + ;; nsterm.m + (ns-control-modifier + nextstep + (choice (const :tag "No modifier" nil) + (const control) (const meta) + (const alt) (const hyper) + (const super)) "23.1") + (ns-command-modifier + nextstep + (choice (const :tag "No modifier" nil) + (const control) (const meta) + (const alt) (const hyper) + (const super)) "23.1") + (ns-alternate-modifier + nextstep + (choice (const :tag "No modifier (work as alternate/option)" none) + (const control) (const meta) + (const alt) (const hyper) + (const super)) "23.1") + (ns-function-modifier + nextstep + (choice (const :tag "No modifier (work as function)" none) + (const control) (const meta) + (const alt) (const hyper) + (const super)) "23.1") + (ns-antialias-text ns boolean "23.1") + (ns-use-qd-smoothing ns boolean "23.1") ;; process.c (delete-exited-processes processes-basics boolean) ;; syntax.c |