diff options
author | Glenn Morris <rgm@gnu.org> | 2012-04-16 15:02:59 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-04-16 15:02:59 -0400 |
commit | 68892d275b8dff830ba48e271d8dc71ba84b2b14 (patch) | |
tree | 3faedf63e5e6ada80b83085e418e30e7edbf0754 | |
parent | 20f0c46dcdb597702fbb444729ec35411c036352 (diff) | |
download | emacs-68892d275b8dff830ba48e271d8dc71ba84b2b14.tar.gz |
* lisp/play/yow.el (yow-file): Use expand-file-name rather than concat.
Remove old comment.
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/play/yow.el | 8 |
2 files changed, 4 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 24b564b6d70..68225f1bec8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2012-04-16 Glenn Morris <rgm@gnu.org> + * play/yow.el (yow-file): Use expand-file-name rather than concat. + * progmodes/perl-mode.el (c-macro-expand): Remove unnecessary autoload (it is in loaddefs.el). diff --git a/lisp/play/yow.el b/lisp/play/yow.el index fa32fdf8272..864f49709fe 100644 --- a/lisp/play/yow.el +++ b/lisp/play/yow.el @@ -1,6 +1,6 @@ ;;; yow.el --- quote random zippyisms -;; Copyright (C) 1993-1995, 2000-2012 Free Software Foundation, Inc. +;; Copyright (C) 1993-1995, 2000-2012 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Author: Richard Mlynarik @@ -24,10 +24,6 @@ ;;; Commentary: ;; Important pinheadery for GNU Emacs. -;; -;; See cookie1.el for implementation. Note --- the `n' argument of yow -;; from the 18.xx implementation is no longer; we only support *random* -;; random access now. ;;; Code: @@ -38,7 +34,7 @@ :prefix "yow-" :group 'games) -(defcustom yow-file (concat data-directory "yow.lines") +(defcustom yow-file (expand-file-name data-directory "yow.lines") "File containing pertinent pinhead phrases." :type 'file :group 'yow) |