diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/cus-start.el | 27 |
2 files changed, 33 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9cd895c4f35..77f70c5b7e9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2009-03-21 David Reitter <david.reitter@gmail.com> | ||
| 2 | |||
| 3 | * cus-start.el (all): add | ||
| 4 | `ns-{control|command|alternate|function}-modifier', | ||
| 5 | `ns-antialias-text' and `ns-use-qd-smoothing' | ||
| 6 | |||
| 1 | 2009-03-20 Dan Nicolaescu <dann@ics.uci.edu> | 7 | 2009-03-20 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 8 | ||
| 3 | * vc-dir.el (vc-dir-deduce-fileset): Make the error message more explicit. | 9 | * vc-dir.el (vc-dir-deduce-fileset): Make the error message more explicit. |
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 | |||
| 248 | function)) | 248 | function)) |
| 249 | ;; msdos.c | 249 | ;; msdos.c |
| 250 | (dos-unsupported-char-glyph display integer) | 250 | (dos-unsupported-char-glyph display integer) |
| 251 | ;; nsterm.m | ||
| 252 | (ns-control-modifier | ||
| 253 | nextstep | ||
| 254 | (choice (const :tag "No modifier" nil) | ||
| 255 | (const control) (const meta) | ||
| 256 | (const alt) (const hyper) | ||
| 257 | (const super)) "23.1") | ||
| 258 | (ns-command-modifier | ||
| 259 | nextstep | ||
| 260 | (choice (const :tag "No modifier" nil) | ||
| 261 | (const control) (const meta) | ||
| 262 | (const alt) (const hyper) | ||
| 263 | (const super)) "23.1") | ||
| 264 | (ns-alternate-modifier | ||
| 265 | nextstep | ||
| 266 | (choice (const :tag "No modifier (work as alternate/option)" none) | ||
| 267 | (const control) (const meta) | ||
| 268 | (const alt) (const hyper) | ||
| 269 | (const super)) "23.1") | ||
| 270 | (ns-function-modifier | ||
| 271 | nextstep | ||
| 272 | (choice (const :tag "No modifier (work as function)" none) | ||
| 273 | (const control) (const meta) | ||
| 274 | (const alt) (const hyper) | ||
| 275 | (const super)) "23.1") | ||
| 276 | (ns-antialias-text ns boolean "23.1") | ||
| 277 | (ns-use-qd-smoothing ns boolean "23.1") | ||
| 251 | ;; process.c | 278 | ;; process.c |
| 252 | (delete-exited-processes processes-basics boolean) | 279 | (delete-exited-processes processes-basics boolean) |
| 253 | ;; syntax.c | 280 | ;; syntax.c |