aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2005-09-06 07:30:14 +0000
committerMiles Bader2005-09-06 07:30:14 +0000
commit389cb481135145b80a679beec8cdc8fed75682c5 (patch)
tree4eb407ade59e532003d7ee70082d57f0114c6df6
parent621806aab200b6d9bc592471b55e8664aa3646f3 (diff)
parent2a6bc1f7cae62b2ddfdf574ba4686fdecb92bfc7 (diff)
downloademacs-389cb481135145b80a679beec8cdc8fed75682c5.tar.gz
emacs-389cb481135145b80a679beec8cdc8fed75682c5.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-80
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 531) - Update from CVS
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/custom.el3
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/tips.texi4
4 files changed, 14 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c515f9accc7..a0256150af9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12005-09-05 Chong Yidong <cyd@stupidchicken.com> 12005-09-05 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * custom.el (custom-push-theme): Fix last change.
4
52005-09-05 Chong Yidong <cyd@stupidchicken.com>
6
3 * cus-theme.el (custom-theme-write-faces): Save the current face 7 * cus-theme.el (custom-theme-write-faces): Save the current face
4 spec, not the defface spec. 8 spec, not the defface spec.
5 9
diff --git a/lisp/custom.el b/lisp/custom.el
index 2b714a7b458..d634160e534 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -649,7 +649,8 @@ See `custom-known-themes' for a list of known themes."
649 (progn 649 (progn
650 (setcar (cdr setting) mode) 650 (setcar (cdr setting) mode)
651 (setcar (cddr setting) value)) 651 (setcar (cddr setting) value))
652 (if (null old) 652 (if (and (null old)
653 (boundp symbol))
653 (setq old 654 (setq old
654 (list 655 (list
655 (list 'standard 'set 656 (list 'standard 'set
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index ec8885138b5..8fc5754bf80 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12005-09-06 Richard M. Stallman <rms@gnu.org>
2
3 * tips.texi (Coding Conventions): Sometimes it is ok to put the
4 package prefix elsewhere than at the start of the name.
5
12005-09-03 Richard M. Stallman <rms@gnu.org> 62005-09-03 Richard M. Stallman <rms@gnu.org>
2 7
3 * tips.texi (Programming Tips): Add conventions for minibuffer 8 * tips.texi (Programming Tips): Add conventions for minibuffer
diff --git a/lispref/tips.texi b/lispref/tips.texi
index d651eb95f0e..fbf18047bde 100644
--- a/lispref/tips.texi
+++ b/lispref/tips.texi
@@ -56,7 +56,9 @@ distinguish your program from other Lisp programs.@footnote{The
56benefits of a Common Lisp-style package system are considered not to 56benefits of a Common Lisp-style package system are considered not to
57outweigh the costs.} Then take care to begin the names of all global 57outweigh the costs.} Then take care to begin the names of all global
58variables, constants, and functions in your program with the chosen 58variables, constants, and functions in your program with the chosen
59prefix. This helps avoid name conflicts. 59prefix. This helps avoid name conflicts. (Occasionally, for a command
60name intended for users to use, it is cleaner if some words come
61before the package name prefix.)
60 62
61This recommendation applies even to names for traditional Lisp 63This recommendation applies even to names for traditional Lisp
62primitives that are not primitives in Emacs Lisp---such as 64primitives that are not primitives in Emacs Lisp---such as