Codebase list pspp / bde694c
Import Debian changes 0.4.0-6 pspp (0.4.0-6) unstable; urgency=low * rebuild against libreadline5 (closes: #356799) * debian/copyright: update FSF address pspp (0.4.0-5) unstable; urgency=low * debian/emacsen-startup: autoload pspp-mode.el, and add it to automode-alist for .sps files. James R. Van Zandt authored 18 years ago Andreas Tille committed 5 years ago
3 changed file(s) with 23 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 pspp (0.4.0-6) unstable; urgency=low
1
2 * rebuild against libreadline5 (closes: #356799)
3 * debian/copyright: update FSF address
4
5 -- James R. Van Zandt <jrv@debian.org> Fri, 17 Mar 2006 20:42:11 -0500
6
7 pspp (0.4.0-5) unstable; urgency=low
8
9 * debian/emacsen-startup: autoload pspp-mode.el, and add it to
10 automode-alist for .sps files.
11
12 -- James R. Van Zandt <jrv@debian.org> Tue, 7 Mar 2006 19:35:26 -0500
13
014 pspp (0.4.0-4) unstable; urgency=low
115
216 * debian/control: depend on texinfo (thanks to Roland Stigge
2323
2424 You should have received a copy of the GNU General Public License
2525 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
27 02111-1307, USA.
26 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
27 02110-1301, USA.
28
2829
2930 On Debian GNU/Linux systems, the complete text of the GNU Public
3031 License can be found in `/usr/share/common-licenses/'.
00 ;; -*-emacs-lisp-*-
11 ;;
2 ;; Emacs startup file for the Debian pspp package
2 ;; Emacs startup file /etc/emacs/site-start.d/50pspp.el
3 ;; for the Debian pspp package
34 ;;
45 ;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at>
56 ;; Modified by Dirk Eddelbuettel <edd@debian.org>
1415 (symbol-name flavor)
1516 "/site-lisp/pspp")))
1617 (when (file-directory-p package-dir)
17 (setq load-path (cons package-dir load-path))))
18 (setq load-path (cons package-dir load-path))
19 (autoload 'pspp-mode "pspp-mode" "Major mode for editing PSPP files." t)
20 (add-to-list 'auto-mode-alist '("\\.sps$" . pspp-mode))))
1821
22