~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to debian/ex/emacsen-startup.ex

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
;; -*-emacs-lisp-*-
2
 
;;
3
 
;; Emacs startup file for the Debian vnc4 package
4
 
;;
5
 
;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at>
6
 
;; Modified by Dirk Eddelbuettel <edd@debian.org>
7
 
;; Adapted for dh-make by Jim Van Zandt <jrv@vanzandt.mv.com>
8
 
 
9
 
;; The vnc4 package follows the Debian/GNU Linux 'emacsen' policy and
10
 
;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
11
 
;; xemacs19, emacs20, xemacs20...).  The compiled code is then
12
 
;; installed in a subdirectory of the respective site-lisp directory.
13
 
;; We have to add this to the load-path:
14
 
(let ((package-dir (concat "/usr/share/"
15
 
                           (symbol-name flavor)
16
 
                           "/site-lisp/vnc4")))
17
 
  (when (file-directory-p package-dir)
18
 
        (setq load-path (cons package-dir load-path))))
19